mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-03-26 21:35:03 -02:30
Give more control over IPIP, but with same default behaviour
This commit is contained in:
@@ -94,7 +94,7 @@
|
||||
shell: >
|
||||
echo '{
|
||||
"kind": "ipPool",
|
||||
"spec": {"disabled": false, "ipip": {"enabled": {{ cloud_provider is defined or ipip }}},
|
||||
"spec": {"disabled": false, "ipip": {"enabled": {{ calico_ipip is defined | ternary(calico_ipip, cloud_provider is defined) }}},
|
||||
"nat-outgoing": {{ nat_outgoing|default(false) and not peer_with_router|default(false) }}},
|
||||
"apiVersion": "v1",
|
||||
"metadata": {"cidr": "{{ kube_pods_subnet }}"}
|
||||
@@ -111,7 +111,7 @@
|
||||
set_fact:
|
||||
ipip_arg: "--ipip"
|
||||
when: (legacy_calicoctl and
|
||||
cloud_provider is defined or ipip)
|
||||
calico_ipip is defined | ternary (calico_ipip, cloud_provider is defined))
|
||||
tags: facts
|
||||
|
||||
- name: Calico (old) | Define nat-outgoing pool argument
|
||||
|
||||
Reference in New Issue
Block a user