8f9fba6e67
By default, devstack will enable plugin in master branch. However, master branch might not be the branch we wanted. In particular, if we are using stable branch, we want devstack to enable plugin in stable branch instead of master branch. This commit modifies the sample local conf to explicitly specify the branch when enabling devstack plugin. Change-Id: I1ce148f50e4d091e959b5c0d5b1b6281a07db946
23 lines
800 B
Plaintext
23 lines
800 B
Plaintext
[[local|localrc]]
|
|
HOST_IP=10.0.0.31 # change this to your IP address
|
|
DATABASE_PASSWORD=password
|
|
RABBIT_PASSWORD=password
|
|
SERVICE_TOKEN=password
|
|
SERVICE_PASSWORD=password
|
|
ADMIN_PASSWORD=password
|
|
enable_plugin devstack-plugin-container https://git.openstack.org/openstack/devstack-plugin-container $TARGET_BRANCH
|
|
enable_plugin zun https://git.openstack.org/openstack/zun $TARGET_BRANCH
|
|
|
|
KURYR_CAPABILITY_SCOPE=global
|
|
KURYR_PROCESS_EXTERNAL_CONNECTIVITY=False
|
|
enable_plugin kuryr-libnetwork https://git.openstack.org/openstack/kuryr-libnetwork $TARGET_BRANCH
|
|
|
|
# Following is for multi host settings
|
|
MULTI_HOST=True
|
|
SERVICE_HOST=10.0.0.11 # change this to controller's IP address
|
|
DATABASE_TYPE=mysql
|
|
MYSQL_HOST=$SERVICE_HOST
|
|
RABBIT_HOST=$SERVICE_HOST
|
|
|
|
ENABLED_SERVICES=zun-compute,kuryr-libnetwork,q-agt
|