Commit f105b362 authored by Jason Williams's avatar Jason Williams

Adding settings to sysctl for briding

parent 8a574276
......@@ -18,6 +18,20 @@
notify: restart kubelet
with_items: "{{ kubernetes_packages }}"
# per the install doc,
# https://kubernetes.io/docs/setup/production-environment/tools/kubeadm/install-kubeadm/
- name: Set sysctl for IPv4 bridges
sysctl:
name: net.bridge.bridge-nf-call-iptables
value: 1
state: present
- name: Set sysctl for IPv6 bridges
sysctl:
name: net.bridge.bridge-nf-call-ip6tables
value: 1
state: present
- include_tasks: kubelet-setup.yml
- name: Ensure kubelet is started and enabled at boot.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment