Skip to content

Instantly share code, notes, and snippets.

@markmc
Created November 26, 2013 12:27
Show Gist options
  • Select an option

  • Save markmc/7657537 to your computer and use it in GitHub Desktop.

Select an option

Save markmc/7657537 to your computer and use it in GitHub Desktop.

devtest_overcloud

  1. Create your overcloud control plane image. This is the image the undercloud will deploy to become the KVM (or QEMU, Xen, etc.) cloud control plane. Note that stackuser is only there for debugging support - it is not suitable for a production network. $OVERCLOUD_DIB_EXTRA_ARGS is meant to be used to pass additional build-time specific arguments to disk-image-create.

    $TRIPLEO_ROOT/diskimage-builder/bin/disk-image-create $NODE_DIST \
        -a $NODE_ARCH -o $TRIPLEO_ROOT/overcloud-control \
        boot-stack cinder os-collect-config neutron-network-node notcompute \
        dhcp-all-interfaces stackuser swift-proxy swift-storage ${OVERCLOUD_DIB_EXTRA_ARGS:-} 2>&1 | \
        tee $TRIPLEO_ROOT/dib-overcloud-control.log
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment