Packages

package v1alpha1

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class ClusterCIDR(metadata: Option[ObjectMeta] = None, spec: Option[ClusterCIDRSpec] = None) extends KObject with Product with Serializable

    ClusterCIDR represents a single configuration for per-Node Pod CIDR allocations when the MultiCIDRRangeAllocator is enabled (see the config for kube-controller-manager).

    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.

  2. final case class ClusterCIDRList(items: Seq[ClusterCIDR], metadata: Option[ListMeta] = None) extends KObject with Product with Serializable

    ClusterCIDRList contains a list of ClusterCIDR.

  3. final case class ClusterCIDRSpec(perNodeHostBits: Int, ipv4: Option[String] = None, ipv6: Option[String] = None, nodeSelector: Option[NodeSelector] = None) extends Product with Serializable

    ClusterCIDRSpec defines the desired state of ClusterCIDR.

Value Members

  1. object ClusterCIDR extends Serializable
  2. object ClusterCIDRList extends Serializable
  3. object ClusterCIDRSpec extends Serializable

Ungrouped