summaryrefslogtreecommitdiff
path: root/roles/kubernetes/standalone/templates/cni-with-localonly-portmap.conflist.j2
diff options
context:
space:
mode:
Diffstat (limited to 'roles/kubernetes/standalone/templates/cni-with-localonly-portmap.conflist.j2')
-rw-r--r--roles/kubernetes/standalone/templates/cni-with-localonly-portmap.conflist.j225
1 files changed, 0 insertions, 25 deletions
diff --git a/roles/kubernetes/standalone/templates/cni-with-localonly-portmap.conflist.j2 b/roles/kubernetes/standalone/templates/cni-with-localonly-portmap.conflist.j2
deleted file mode 100644
index acaf7eba..00000000
--- a/roles/kubernetes/standalone/templates/cni-with-localonly-portmap.conflist.j2
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "cniVersion": "0.3.1",
- "name": "kube-standalone",
- "plugins": [
- {
- "type": "bridge",
- "bridge": "kube-bridge",
- "isDefaultGateway": true,
- "ipMasq": true,
- "hairpinMode": false,
- "ipam": {
- "type": "host-local",
- "subnet": "{{ kubernetes_standalone_pod_cidr }}"
- }
- }, {
- "type": "portmap",
- "capabilities": {
- "portMappings": true
- },
- "snat": true,
- "conditionsV4": ["-s", "127.0.0.1", "-d", "127.0.0.1"],
- "conditionsV6": ["-s", "::1", "-d", "::1"]
- }
- ]
-}