Files
TerraHome/nixos/kubeadm/modules/k8s-cluster-settings.nix

13 lines
241 B
Nix
Raw Normal View History

{ ... }:
{
terrahome.kubeadm = {
k8sMinor = "1.31";
controlPlaneInterface = "eth0";
controlPlaneVipSuffix = 250;
podSubnet = "10.244.0.0/16";
serviceSubnet = "10.96.0.0/12";
clusterDomain = "cluster.local";
};
}