
Depends-On: https://review.opendev.org/#/c/709328/ Implements: blueprint add-support-cri-runtime Change-Id: Id907628e8629d2bb8447f62e96e0018f3232e08f
34 lines
918 B
Plaintext
34 lines
918 B
Plaintext
# Devstack settings
|
|
|
|
## Modify to your environment
|
|
# FLOATING_RANGE=192.168.1.224/27
|
|
# PUBLIC_NETWORK_GATEWAY=192.168.1.225
|
|
# PUBLIC_INTERFACE=em1
|
|
# FIXED_RANGE=10.0.0.0/24
|
|
## Log all output to files
|
|
# LOGFILE=$HOME/devstack.log
|
|
## Neutron settings
|
|
# Q_USE_SECGROUP=True
|
|
# ENABLE_TENANT_VLANS=True
|
|
# TENANT_VLAN_RANGE=
|
|
# PHYSICAL_NETWORK=public
|
|
# OVS_PHYSICAL_BRIDGE=br-ex
|
|
|
|
# Configure Docker cluster store
|
|
DOCKER_CLUSTER_STORE=${DOCKER_CLUSTER_STORE:-etcd://$SERVICE_HOST:$ETCD_PORT}
|
|
|
|
# Configure CNI plugins
|
|
CNI_PLUGINS_INSTALL_PLUGINS=loopback,zun-cni
|
|
CNI_PLUGINS_CONF_SOURCE_DIR=$DEST/zun/etc/cni/net.d
|
|
|
|
# Enable Zun services
|
|
if [[ ${HOST_IP} == ${SERVICE_HOST} ]] || [[ "[${HOST_IPV6}]" == "${SERVICE_HOST}" ]]; then
|
|
enable_service zun-api
|
|
enable_service zun-compute
|
|
enable_service zun-wsproxy
|
|
enable_service zun-cni-daemon
|
|
else
|
|
enable_service zun-compute
|
|
enable_service zun-cni-daemon
|
|
fi
|