Add documentation comments to deploy-baremetal-overcloudrc sample.

The environment variables in deploy-baremetal-overcloudrc are not
immediately intuitive. This change adds comments documenting each
of the environment variables that can be set. This should ease
creation of the deploy-overcloudrc file.

Change-Id: I26b9bcac39db5bdb60805d7a59d5ef883d80537c
This commit is contained in:
Dan Sneddon 2015-04-09 15:43:14 -07:00
parent 39e0d65911
commit f3f4e40d8a
1 changed files with 17 additions and 0 deletions

View File

@ -1,13 +1,30 @@
#!/bin/bash
# Interface where external network is attached to controller(s).
export NeutronPublicInterface=nic1
# OVERCLOUD_LIBVIRT_TYPE may be either kvm or qemu (if using nested virt).
export OVERCLOUD_LIBVIRT_TYPE=kvm
# Network CIDR to use when creating "default-net" tenant network.
export NETWORK_CIDR="10.0.0.0/8"
# Range of IP addresses to add to Neutron floating ip pool.
export FLOATING_IP_START="172.17.0.45"
export FLOATING_IP_END="172.17.0.64"
# Network subnet for external network.
export FLOATING_IP_CIDR="172.17.0.0/16"
# Network gateway on external network.
export BM_NETWORK_GATEWAY="172.17.0.1"
# Network type may be gre or vxlan.
export NEUTRON_NETWORK_TYPE=gre
# Should match the NEURTRON_NETWORK_TYPE above.
export NEUTRON_TUNNEL_TYPES=gre
# Set the number of nodes to provision for each class of server.
export COMPUTESCALE=1
export BLOCKSTORAGESCALE=0
export SWIFTSTORAGESCALE=0