Remove mutual exclusivity in calico: NAT and router mode (#9255)
* Add optional NAT support in calico router mode * Add a blank line in front of lists * Remove mutual exclusivity: NAT and router mode * Ignore router mode from NAT * Update calico docpull/9274/head
parent
5bce39abf8
commit
952cad8d63
|
@ -72,9 +72,14 @@ calico_pool_cidr_ipv6: fd85:ee78:d8a6:8607::1:0000/112
|
||||||
|
|
||||||
In some cases you may want to route the pods subnet and so NAT is not needed on the nodes.
|
In some cases you may want to route the pods subnet and so NAT is not needed on the nodes.
|
||||||
For instance if you have a cluster spread on different locations and you want your pods to talk each other no matter where they are located.
|
For instance if you have a cluster spread on different locations and you want your pods to talk each other no matter where they are located.
|
||||||
The following variables need to be set:
|
The following variables need to be set as follow:
|
||||||
`peer_with_router` to enable the peering with the datacenter's border router (default value: false).
|
|
||||||
you'll need to edit the inventory and add a hostvar `local_as` by node.
|
```yml
|
||||||
|
peer_with_router: true # enable the peering with the datacenter's border router (default value: false).
|
||||||
|
nat_outgoing: false # (optional) NAT outgoing (default value: true).
|
||||||
|
```
|
||||||
|
|
||||||
|
And you'll need to edit the inventory and add a hostvar `local_as` by node.
|
||||||
|
|
||||||
```ShellSession
|
```ShellSession
|
||||||
node1 ansible_ssh_host=95.54.0.12 local_as=xxxxxx
|
node1 ansible_ssh_host=95.54.0.12 local_as=xxxxxx
|
||||||
|
|
|
@ -227,7 +227,7 @@
|
||||||
"cidr": "{{ calico_pool_cidr | default(kube_pods_subnet) }}",
|
"cidr": "{{ calico_pool_cidr | default(kube_pods_subnet) }}",
|
||||||
"ipipMode": "{{ calico_ipip_mode }}",
|
"ipipMode": "{{ calico_ipip_mode }}",
|
||||||
"vxlanMode": "{{ calico_vxlan_mode }}",
|
"vxlanMode": "{{ calico_vxlan_mode }}",
|
||||||
"natOutgoing": {{ nat_outgoing|default(false) and not peer_with_router|default(false) }}
|
"natOutgoing": {{ nat_outgoing|default(false) }}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -266,7 +266,7 @@
|
||||||
"cidr": "{{ calico_pool_cidr_ipv6 | default(kube_pods_subnet_ipv6) }}",
|
"cidr": "{{ calico_pool_cidr_ipv6 | default(kube_pods_subnet_ipv6) }}",
|
||||||
"ipipMode": "{{ calico_ipip_mode_ipv6 }}",
|
"ipipMode": "{{ calico_ipip_mode_ipv6 }}",
|
||||||
"vxlanMode": "{{ calico_vxlan_mode_ipv6 }}",
|
"vxlanMode": "{{ calico_vxlan_mode_ipv6 }}",
|
||||||
"natOutgoing": {{ nat_outgoing_ipv6|default(false) and not peer_with_router_ipv6|default(false) }}
|
"natOutgoing": {{ nat_outgoing_ipv6|default(false) }}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue