Clean up the doc.

This commit is contained in:
Tom Alexander
2025-03-18 19:06:26 -04:00
parent f3c22c18e5
commit 47cca17e51
4 changed files with 50 additions and 45 deletions

View File

@@ -7,7 +7,8 @@ resource "kubernetes_config_map" "ip_masq_agent" {
}
data = {
config = "nonMasqueradeCIDRs:\n - 100.64.0.0/19\n - 240.10.0.0/17\nmasqLinkLocal: false\nresyncInterval: 60s\n"
# nonMasqueradeCIDRs must include pod and node IP address ranges : https://cloud.google.com/kubernetes-engine/docs/how-to/ip-masquerade-agent
config = "nonMasqueradeCIDRs:\n - 10.10.10.0/26\n - 240.10.0.0/17\nmasqLinkLocal: false\nresyncInterval: 60s\n"
}
depends_on = [var.node_pool]