
Installing docker will install the CRI plugin for containerd. This commit support enabling the CRI-containerd plugin. By default, this is disabled. Change-Id: Ica8d5f91ae77d1d6599bfadc4031552016ad8953
23 lines
737 B
Plaintext
23 lines
737 B
Plaintext
# Devstack settings
|
|
|
|
# Supported options are "docker" and "crio".
|
|
CONTAINER_ENGINE=${CONTAINER_ENGINE:-docker}
|
|
# TODO(hongbin): deprecate and remove clear container
|
|
ENABLE_CLEAR_CONTAINER=${ENABLE_CLEAR_CONTAINER:-false}
|
|
ENABLE_KATA_CONTAINERS=${ENABLE_KATA_CONTAINERS:-false}
|
|
ENABLE_LIVE_RESTORE=${ENABLE_LIVE_RESTORE:-false}
|
|
ENABLE_IPV6=${ENABLE_IPV6:-false}
|
|
K8S_NETWORK_ADDON=${K8S_NETWORK_ADDON:-flannel}
|
|
ENABLE_CONTAINERD_CRI=${ENABLE_CONTAINERD_CRI:-false}
|
|
|
|
# Enable container services
|
|
enable_service container
|
|
|
|
# Enable k8s services
|
|
if [[ ,${ENABLED_SERVICES} =~ ,"k8s-master" ]]; then
|
|
enable_service kube-controller-manager
|
|
enable_service kube-apiserver
|
|
enable_service kube-scheduler
|
|
enable_service kube-proxy
|
|
fi
|