clusterTemplate_spec_cluster_controlPlaneSpec_kubeadmConfigTemplate_clusterConfiguration_networking

clusterTemplate_spec_cluster_controlPlaneSpec_kubeadmConfigTemplate_clusterConfiguration_networking
clusterTemplate_spec_cluster_controlPlaneSpec_kubeadmConfigTemplate_clusterConfiguration_networking

Networking holds configuration for the networking topology of the cluster. NB: This value defaults to the Cluster object spec.clusterNetwork.

JSON Example
{
    "podSubnet": "podSubnet",
    "serviceSubnet": "serviceSubnet",
    "dnsDomain": "dnsDomain"
}
string
dnsDomain
Optional

DNSDomain is the dns domain used by k8s services. Defaults to "cluster.local".

string
podSubnet
Optional

PodSubnet is the subnet used by pods. If unset, the API server will not allocate CIDR ranges for every node. Defaults to a comma-delimited string of the Cluster object's spec.clusterNetwork.services.cidrBlocks if that is set

string
serviceSubnet
Optional

ServiceSubnet is the subnet used by k8s services. Defaults to a comma-delimited string of the Cluster object's spec.clusterNetwork.pods.cidrBlocks, or to "10.96.0.0/12" if that's unset.