23 lines
781 B
YAML
23 lines
781 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: host_resolvconf
|
|
|
|
## Container runtime
|
|
## docker for docker, crio for cri-o and containerd for containerd.
|
|
container_manager: crio
|