Package-level declarations

Types

Link copied to clipboard
data class ClusterCIDRArgs(val apiVersion: Output<String>? = null, val kind: Output<String>? = null, val metadata: Output<ObjectMetaArgs>? = null, val spec: Output<ClusterCIDRSpecArgs>? = null) : ConvertibleToJava<ClusterCIDRArgs>

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
Link copied to clipboard
data class ClusterCIDRSpecArgs(val ipv4: Output<String>? = null, val ipv6: Output<String>? = null, val nodeSelector: Output<NodeSelectorArgs>? = null, val perNodeHostBits: Output<Int>) : ConvertibleToJava<ClusterCIDRSpecArgs>

ClusterCIDRSpec defines the desired state of ClusterCIDR.

Link copied to clipboard
data class ClusterCIDRSpecPatchArgs(val ipv4: Output<String>? = null, val ipv6: Output<String>? = null, val nodeSelector: Output<NodeSelectorPatchArgs>? = null, val perNodeHostBits: Output<Int>? = null) : ConvertibleToJava<ClusterCIDRSpecPatchArgs>

ClusterCIDRSpec defines the desired state of ClusterCIDR.

Link copied to clipboard
data class IPAddressArgs(val apiVersion: Output<String>? = null, val kind: Output<String>? = null, val metadata: Output<ObjectMetaArgs>? = null, val spec: Output<IPAddressSpecArgs>? = null) : ConvertibleToJava<IPAddressArgs>

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
Link copied to clipboard
data class IPAddressSpecArgs(val parentRef: Output<ParentReferenceArgs>? = null) : ConvertibleToJava<IPAddressSpecArgs>

IPAddressSpec describe the attributes in an IP Address.

Link copied to clipboard
Link copied to clipboard
data class IPAddressSpecPatchArgs(val parentRef: Output<ParentReferencePatchArgs>? = null) : ConvertibleToJava<IPAddressSpecPatchArgs>

IPAddressSpec describe the attributes in an IP Address.

Link copied to clipboard
data class ParentReferenceArgs(val group: Output<String>? = null, val name: Output<String>? = null, val namespace: Output<String>? = null, val resource: Output<String>? = null, val uid: Output<String>? = null) : ConvertibleToJava<ParentReferenceArgs>

ParentReference describes a reference to a parent object.

Link copied to clipboard
data class ParentReferencePatchArgs(val group: Output<String>? = null, val name: Output<String>? = null, val namespace: Output<String>? = null, val resource: Output<String>? = null, val uid: Output<String>? = null) : ConvertibleToJava<ParentReferencePatchArgs>

ParentReference describes a reference to a parent object.