a39e78d42d
* Updates Controller Manager/Kubelet with Flannel's required configuration for CNI * Removes old Flannel installation * Install CNI enabled Flannel DaemonSet/ConfigMap/CNI bins and config (with portmap plugin) on host * Uses RBAC if enabled * Fixed an issue that could occur if br_netfilter is not a module and net.bridge.bridge-nf-call-iptables sysctl was not set
22 lines
No EOL
767 B
YAML
22 lines
No EOL
767 B
YAML
---
|
|
# Flannel public IP
|
|
# The address that flannel should advertise as how to access the system
|
|
# Disabled until https://github.com/coreos/flannel/issues/712 is fixed
|
|
# flannel_public_ip: "{{ access_ip|default(ip|default(ansible_default_ipv4.address)) }}"
|
|
|
|
## interface that should be used for flannel operations
|
|
## This is actually an inventory node-level item
|
|
# flannel_interface:
|
|
|
|
# You can choose what type of flannel backend to use
|
|
# please refer to flannel's docs : https://github.com/coreos/flannel/blob/master/README.md
|
|
flannel_backend_type: "vxlan"
|
|
|
|
# Limits for apps
|
|
flannel_memory_limit: 500M
|
|
flannel_cpu_limit: 300m
|
|
flannel_memory_requests: 64M
|
|
flannel_cpu_requests: 150m
|
|
|
|
# Legacy directory, will be removed if found.
|
|
flannel_cert_dir: /etc/flannel/certs |