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.

  4. final case class IPAddress(metadata: Option[ObjectMeta] = None, spec: Option[IPAddressSpec] = None) extends KObject with Product with Serializable

    IPAddress represents a single IP of a single IP Family.

    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

  5. final case class IPAddressList(items: Seq[IPAddress], metadata: Option[ListMeta] = None) extends KObject with Product with Serializable

    IPAddressList contains a list of IPAddress.

  6. final case class IPAddressSpec(parentRef: Option[ParentReference] = None) extends Product with Serializable

    IPAddressSpec describe the attributes in an IP Address.

  7. final case class ParentReference(name: Option[String] = None, resource: Option[String] = None, uid: Option[String] = None, group: Option[String] = None, namespace: Option[String] = None) extends Product with Serializable

    ParentReference describes a reference to a parent object.

Value Members

  1. object ClusterCIDR extends Serializable
  2. object ClusterCIDRList extends Serializable
  3. object ClusterCIDRSpec extends Serializable
  4. object IPAddress extends Serializable
  5. object IPAddressList extends Serializable
  6. object IPAddressSpec extends Serializable
  7. object ParentReference extends Serializable

Ungrouped