Package-level declarations

Types

Link copied to clipboard
data class ClusterCIDR(val apiVersion: String? = null, val kind: String? = null, val metadata: ObjectMeta? = null, val spec: ClusterCIDRSpec? = null)

ClusterCIDR represents a single configuration for per-Node Pod CIDR allocations when the MultiCIDRRangeAllocator is enabled (see the config for kube-controller-manager). A cluster may have any number of ClusterCIDR resources, all of which will be considered when allocating a CIDR for a Node. A ClusterCIDR is eligible to be used for a given Node when the node selector matches the node in question and has free CIDRs to allocate. In case of multiple matching ClusterCIDR resources, the allocator will attempt to break ties using internal heuristics, but any ClusterCIDR whose node selector matches the Node may be used.

Link copied to clipboard
data class ClusterCIDRSpec(val ipv4: String? = null, val ipv6: String? = null, val nodeSelector: NodeSelector? = null, val perNodeHostBits: Int)

ClusterCIDRSpec defines the desired state of ClusterCIDR.

Link copied to clipboard
data class ClusterCIDRSpecPatch(val ipv4: String? = null, val ipv6: String? = null, val nodeSelector: NodeSelectorPatch? = null, val perNodeHostBits: Int? = null)

ClusterCIDRSpec defines the desired state of ClusterCIDR.

Link copied to clipboard
data class IPAddress(val apiVersion: String? = null, val kind: String? = null, val metadata: ObjectMeta? = null, val spec: IPAddressSpec? = null)

IPAddress represents a single IP of a single IP Family. The object is designed to be used by APIs that operate on IP addresses. The object is used by the Service core API for allocation of IP addresses. An IP address can be represented in different formats, to guarantee the uniqueness of the IP, the name of the object is the IP address in canonical format, four decimal digits separated by dots suppressing leading zeros for IPv4 and the representation defined by RFC 5952 for IPv6. Valid: 192.168.1.5 or 2001:db8::1 or 2001:db8:aaaa:bbbb:cccc:dddd:eeee:1 Invalid: 10.01.2.3 or 2001:db8:0:0:0::1

Link copied to clipboard
data class IPAddressSpec(val parentRef: ParentReference? = null)

IPAddressSpec describe the attributes in an IP Address.

Link copied to clipboard
data class IPAddressSpecPatch(val parentRef: ParentReferencePatch? = null)

IPAddressSpec describe the attributes in an IP Address.

Link copied to clipboard
data class ParentReference(val group: String? = null, val name: String? = null, val namespace: String? = null, val resource: String? = null, val uid: String? = null)

ParentReference describes a reference to a parent object.

Link copied to clipboard
data class ParentReferencePatch(val group: String? = null, val name: String? = null, val namespace: String? = null, val resource: String? = null, val uid: String? = null)

ParentReference describes a reference to a parent object.