2021-04-29 12:20:50 +00:00
|
|
|
{% for host in groups['kube_node'] %}
|
2019-06-28 07:35:38 +00:00
|
|
|
{% if hostvars[host]['access_ip'] is defined %}
|
|
|
|
{% if hostvars[host]['node_pod_cidr'] != node_pod_cidr %}
|
|
|
|
{{ hostvars[host]['node_pod_cidr'] }} via {{ hostvars[host]['access_ip'] }}
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|