Enable ipv4 and tunnel routing.

This commit is contained in:
Tom Alexander
2025-12-29 17:00:23 -05:00
parent 0b291d7648
commit d1c7a0bfca
5 changed files with 37 additions and 33 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 = "fd49:0595:2bba::/48";
clusterCIDR = "10.200.0.0/16,fd49:0595:2bba::/48";
};
description = ''
kubelet-config.yaml
@@ -57,7 +57,7 @@ in
"${pkgs.kubernetes}/bin/kube-proxy"
"--config=${config_file}"
"--nodeport-addresses=primary"
"--cluster-cidr=fd49:0595:2bba::/48"
"--cluster-cidr=10.200.0.0/16,fd49:0595:2bba::/48"
]
);
Restart = "on-failure";