7eb3afc6f0
This patch updates the setup for the various devstack gate jobs to make them functional for Ocata and thus also validates the parent patch Ocata sync patch. Note that the NFP job still needs to be updated and has been disabled in this patch. It can be re-enabled whenever its updated in a followup patch. Change-Id: I7cd5667fcc86577eb33c0233991cbb687c0ce8c9
60 lines
2.2 KiB
Plaintext
60 lines
2.2 KiB
Plaintext
[[local|localrc]]
|
|
DEST=/opt/stack
|
|
|
|
# Logging
|
|
LOGFILE=$DEST/logs/stack.sh.log
|
|
VERBOSE=True
|
|
LOG_COLOR=False
|
|
SCREEN_LOGDIR=$DEST/logs/screen
|
|
|
|
# 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/ocata
|
|
enable_plugin neutron-lbaas https://git.openstack.org/openstack/neutron-lbaas stable/ocata
|
|
enable_plugin neutron https://github.com/openstack/neutron.git stable/ocata
|
|
enable_plugin neutron-vpnaas https://git.openstack.org/openstack/neutron-vpnaas stable/ocata
|
|
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
|
|
|