![Hongbin Lu](/assets/img/avatar_default.png)
Docker has removed external cluster store in latest version. Therefore, we switch to "local" mode to work around. Closes-Bug: #2007142 Change-Id: I31d140a75dae2ddd23551e648d0492327a8d8c8e
34 lines
895 B
Plaintext
34 lines
895 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
|
|
|
|
# Enable/Disable Kata Container
|
|
ENABLE_KATA_CONTAINERS=${ENABLE_KATA_CONTAINERS:-false}
|
|
|
|
# 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
|