
Since projectatomic Ubuntu builds are deprecated, and advice was to consult upstream documentation[1], Kubernetes with cri-o now rely on Kubic project, which (among the others) provides packages for Ubuntu 20.04. Let us switch for those. [1] https://kubernetes.io/docs/setup/production-environment/container-runtimes/#cri-o Change-Id: Ib06753d22f8859eefedc031094851b052f4105b6
24 lines
782 B
Plaintext
24 lines
782 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}
|
|
CRIO_VERSION=${CRIO_VERSION:-"1.18:/1.18.0"}
|
|
|
|
# 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
|