Packages

package v1alpha1

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

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 ClusterCIDRListPointer(currentPath: PointerPath = PointerPath()) extends Pointer[ClusterCIDRList] with Product with Serializable

    Pointer for ClusterCIDRList

  4. final case class ClusterCIDRPointer(currentPath: PointerPath = PointerPath()) extends Pointer[ClusterCIDR] with Product with Serializable

    Pointer for ClusterCIDR

  5. 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.

  6. final case class ClusterCIDRSpecPointer(currentPath: PointerPath = PointerPath()) extends Pointer[ClusterCIDRSpec] with Product with Serializable

    Pointer for ClusterCIDRSpec

  7. 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

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

    IPAddressList contains a list of IPAddress.

  9. final case class IPAddressListPointer(currentPath: PointerPath = PointerPath()) extends Pointer[IPAddressList] with Product with Serializable

    Pointer for IPAddressList

  10. final case class IPAddressPointer(currentPath: PointerPath = PointerPath()) extends Pointer[IPAddress] with Product with Serializable

    Pointer for IPAddress

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

    IPAddressSpec describe the attributes in an IP Address.

  12. final case class IPAddressSpecPointer(currentPath: PointerPath = PointerPath()) extends Pointer[IPAddressSpec] with Product with Serializable

    Pointer for IPAddressSpec

  13. 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.

  14. final case class ParentReferencePointer(currentPath: PointerPath = PointerPath()) extends Pointer[ParentReference] with Product with Serializable

    Pointer for ParentReference

Ungrouped