ClusterNetworking

data class ClusterNetworking(val clusterIpv4CidrBlocks: List<String>, val clusterIpv6CidrBlocks: List<String>? = null, val networkType: String? = null, val servicesIpv4CidrBlocks: List<String>, val servicesIpv6CidrBlocks: List<String>? = null)

Constructors

Link copied to clipboard
constructor(clusterIpv4CidrBlocks: List<String>, clusterIpv6CidrBlocks: List<String>? = null, networkType: String? = null, servicesIpv4CidrBlocks: List<String>, servicesIpv6CidrBlocks: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

All pods in the cluster are assigned an RFC1918 IPv4 address from these blocks. Only a single block is supported. This field cannot be changed after creation.

Link copied to clipboard

If specified, dual stack mode is enabled and all pods in the cluster are assigned an IPv6 address from these blocks alongside from an IPv4 address. Only a single block is supported. This field cannot be changed after creation.

Link copied to clipboard
val networkType: String? = null

(Output) IP addressing type of this cluster i.e. SINGLESTACK_V4 vs DUALSTACK_V4_V6.

Link copied to clipboard

All services in the cluster are assigned an RFC1918 IPv4 address from these blocks. Only a single block is supported. This field cannot be changed after creation.

Link copied to clipboard

If specified, dual stack mode is enabled and all services in the cluster are assigned an IPv6 address from these blocks alongside from an IPv4 address. Only a single block is supported. This field cannot be changed after creation.