manifests: ensure ip6tables kernel module can load

Fixes: #55

Signed-off-by: Lucas Servén Marín <lserven@gmail.com>
This commit is contained in:
Lucas Servén Marín
2020-05-11 09:40:11 +02:00
parent 968d13148f
commit b188abf0b6
9 changed files with 110 additions and 0 deletions

View File

@@ -118,6 +118,12 @@ spec:
- name: kubeconfig
mountPath: /etc/kubernetes
readOnly: true
- name: lib-modules
mountPath: /lib/modules
readOnly: true
- name: xtables-lock
mountPath: /run/xtables.lock
readOnly: false
initContainers:
- name: install-cni
image: squat/kilo
@@ -161,3 +167,10 @@ spec:
- name: kubeconfig
configMap:
name: kubeconfig-in-cluster
- name: lib-modules
hostPath:
path: /lib/modules
- name: xtables-lock
hostPath:
path: /run/xtables.lock
type: FileOrCreate