Allow pods to directly speak to the public internet on their own public IPv6 addresses.

This commit is contained in:
Tom Alexander
2025-12-29 18:35:20 -05:00
parent 98a5029ccf
commit 332bab09e3
5 changed files with 15 additions and 12 deletions

View File

@@ -33,7 +33,7 @@ in
mode = "iptables";
# clusterCIDR = "10.200.0.0/16";
# clusterCIDR = "2620:11f:7001:7:ffff:ffff:0ac8:0000/16";
clusterCIDR = "10.200.0.0/16,fd49:0595:2bba::/48";
clusterCIDR = "10.200.0.0/16,2620:11f:7001:7:ffff:eeee::/96";
};
description = ''
kubelet-config.yaml
@@ -57,7 +57,7 @@ in
"${pkgs.kubernetes}/bin/kube-proxy"
"--config=${config_file}"
"--nodeport-addresses=primary"
"--cluster-cidr=10.200.0.0/16,fd49:0595:2bba::/48"
"--cluster-cidr=10.200.0.0/16,2620:11f:7001:7:ffff:eeee::/96"
]
);
Restart = "on-failure";