Files
kubespray-inventory/group_vars/k8s-cluster/k8s-cluster.yml
2020-11-20 14:14:20 +01:00

23 lines
776 B
YAML

---
## Change this to use another Kubernetes version, e.g. a current beta release
kube_version: v1.19.3
# Choose network plugin (cilium, calico, contiv, weave or flannel. Use cni for generic cni plugin)
# Can also be set to 'cloud', which lets the cloud provider setup appropriate routing
kube_network_plugin: calico
# Setting multi_networking to true will install Multus: https://github.com/intel/multus-cni
kube_network_plugin_multus: true
# Set manual server if using a custom cluster DNS server
# manual_dns_server: 10.x.x.x
# Enable nodelocal dns cache
enable_nodelocaldns: false
# Can be docker_dns, host_resolvconf or none
resolvconf_mode: docker_dns
## Container runtime
## docker for docker, crio for cri-o and containerd for containerd.
container_manager: crio