5 lines
171 B
Text
5 lines
171 B
Text
|
{% if enable_nat_default_gateway %}
|
||
|
iptables -t nat -D POSTROUTING -s {{ node_pod_cidr|ipaddr('net') }} -o {{ node_default_gateway_interface }} -j MASQUERADE
|
||
|
{% endif %}
|
||
|
|