c215f71376
Change-Id: I381411ad2285257b49bd78ae22c734cea07315c9
59 lines
2.2 KiB
Plaintext
59 lines
2.2 KiB
Plaintext
[[local|localrc]]
|
|
DEST=/opt/stack
|
|
|
|
# Logging
|
|
LOGFILE=$DEST/logs/stack.sh.log
|
|
VERBOSE=True
|
|
LOG_COLOR=False
|
|
|
|
# Credentials
|
|
ADMIN_PASSWORD=mysecret
|
|
MYSQL_PASSWORD=mysqlsecret
|
|
RABBIT_PASSWORD=myrabbitsecret
|
|
SERVICE_PASSWORD=$ADMIN_PASSWORD
|
|
SERVICE_TOKEN=admin
|
|
|
|
# NFP Service
|
|
ENABLE_NFP=True
|
|
GBPSERVICE_REPO=https://git.openstack.org/openstack/group-based-policy.git
|
|
GBPSERVICE_BRANCH=master
|
|
# Edit NFP_DEVSTACK_MODE with either 'base' or 'advanced'
|
|
if [[ $ENABLE_NFP = True ]]; then
|
|
NFP_DEVSTACK_MODE=base
|
|
|
|
if [[ $NFP_DEVSTACK_MODE = advanced ]]; then
|
|
# External Network
|
|
# If configured, install step creates external network, external policy and network service policy
|
|
# If not configured, user has to create external network, external policy and network service policy
|
|
EXT_NET_GATEWAY=
|
|
EXT_NET_ALLOCATION_POOL_START=
|
|
EXT_NET_ALLOCATION_POOL_END=
|
|
EXT_NET_CIDR=
|
|
|
|
# Configurator image path option, its optional
|
|
# If configured, install step uploads the specified image
|
|
# If not configured, install step will build a new one and upload it
|
|
ConfiguratorQcow2Image=
|
|
# Service VM image path options, they are optional
|
|
# If configured, install step uploads the specified images
|
|
# If not configured, install step ignores uploading these service images
|
|
VyosQcow2Image=
|
|
HaproxyQcow2Image=
|
|
|
|
# Make sure that your public interface is not attached to any bridge.
|
|
PUBLIC_INTERFACE=
|
|
|
|
enable_plugin neutron-fwaas http://git.openstack.org/openstack/neutron-fwaas stable/queens
|
|
enable_plugin neutron-lbaas https://git.openstack.org/openstack/neutron-lbaas stable/queens
|
|
enable_plugin neutron https://github.com/openstack/neutron.git stable/queens
|
|
enable_plugin neutron-vpnaas https://git.openstack.org/openstack/neutron-vpnaas stable/queens
|
|
enable_plugin octavia https://git.openstack.org/openstack/octavia
|
|
#enable_plugin barbican https://git.openstack.org/openstack/barbican master
|
|
#enable_plugin ceilometer https://git.openstack.org/openstack/ceilometer.git master
|
|
|
|
fi
|
|
fi
|
|
|
|
enable_plugin group-based-policy $GBPSERVICE_REPO $GBPSERVICE_BRANCH
|
|
|