Packages

package v1

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class AWSElasticBlockStoreVolumeSource(fsType: Optional[String] = Optional.Absent, partition: Optional[Int] = Optional.Absent, readOnly: Optional[Boolean] = Optional.Absent, volumeID: String) extends Product with Serializable

    Represents a Persistent Disk resource in AWS.

    Represents a Persistent Disk resource in AWS.

    An AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.

    fsType

    Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore

    partition

    The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).

    readOnly

    Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore

    volumeID

    Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore

  2. class AWSElasticBlockStoreVolumeSourceFields extends AnyRef
  3. case class Affinity(nodeAffinity: Optional[NodeAffinity] = Optional.Absent, podAffinity: Optional[PodAffinity] = Optional.Absent, podAntiAffinity: Optional[PodAntiAffinity] = Optional.Absent) extends Product with Serializable

    Affinity is a group of affinity scheduling rules.

  4. class AffinityFields extends AnyRef
  5. case class AttachedVolume(devicePath: String, name: String) extends Product with Serializable

    AttachedVolume describes a volume attached to a node

    AttachedVolume describes a volume attached to a node

    devicePath

    DevicePath represents the device path where the volume should be available

    name

    Name of the attached volume

  6. class AttachedVolumeFields extends AnyRef
  7. case class AzureDiskVolumeSource(cachingMode: Optional[String] = Optional.Absent, diskName: String, diskURI: String, fsType: Optional[String] = Optional.Absent, kind: Optional[String] = Optional.Absent, readOnly: Optional[Boolean] = Optional.Absent) extends Product with Serializable

    AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

    AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

    cachingMode

    Host Caching mode: None, Read Only, Read Write.

    diskName

    The Name of the data disk in the blob storage

    diskURI

    The URI the data disk in the blob storage

    fsType

    Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.

    kind

    Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

  8. class AzureDiskVolumeSourceFields extends AnyRef
  9. case class AzureFilePersistentVolumeSource(readOnly: Optional[Boolean] = Optional.Absent, secretName: String, secretNamespace: Optional[String] = Optional.Absent, shareName: String) extends Product with Serializable

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    secretName

    the name of secret that contains Azure Storage Account Name and Key

    secretNamespace

    the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod

    shareName

    Share Name

  10. class AzureFilePersistentVolumeSourceFields extends AnyRef
  11. case class AzureFileVolumeSource(readOnly: Optional[Boolean] = Optional.Absent, secretName: String, shareName: String) extends Product with Serializable

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    secretName

    the name of secret that contains Azure Storage Account Name and Key

    shareName

    Share Name

  12. class AzureFileVolumeSourceFields extends AnyRef
  13. case class Binding(metadata: Optional[ObjectMeta] = Optional.Absent, target: ObjectReference) extends Product with Serializable

    Binding ties one object to another; for example, a pod is bound to a node by a scheduler.

    Binding ties one object to another; for example, a pod is bound to a node by a scheduler. Deprecated in 1.7, please use the bindings subresource of pods instead.

  14. class BindingFields extends AnyRef
  15. case class CSIPersistentVolumeSource(controllerExpandSecretRef: Optional[SecretReference] = Optional.Absent, controllerPublishSecretRef: Optional[SecretReference] = Optional.Absent, driver: String, fsType: Optional[String] = Optional.Absent, nodePublishSecretRef: Optional[SecretReference] = Optional.Absent, nodeStageSecretRef: Optional[SecretReference] = Optional.Absent, readOnly: Optional[Boolean] = Optional.Absent, volumeAttributes: Optional[Map[String, String]] = Optional.Absent, volumeHandle: String) extends Product with Serializable

    Represents storage that is managed by an external CSI volume driver (Beta feature)

    Represents storage that is managed by an external CSI volume driver (Beta feature)

    driver

    Driver is the name of the driver to use for this volume. Required.

    fsType

    Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs".

    readOnly

    Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).

    volumeAttributes

    Attributes of the volume to publish.

    volumeHandle

    VolumeHandle is the unique volume name returned by the CSI volume plugin’s CreateVolume to refer to the volume on all subsequent calls. Required.

  16. class CSIPersistentVolumeSourceFields extends AnyRef
  17. case class CSIVolumeSource(driver: String, fsType: Optional[String] = Optional.Absent, nodePublishSecretRef: Optional[LocalObjectReference] = Optional.Absent, readOnly: Optional[Boolean] = Optional.Absent, volumeAttributes: Optional[Map[String, String]] = Optional.Absent) extends Product with Serializable

    Represents a source location of a volume to mount, managed by an external CSI driver

    Represents a source location of a volume to mount, managed by an external CSI driver

    driver

    Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.

    fsType

    Filesystem type to mount. Ex. "ext4", "xfs", "ntfs". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.

    readOnly

    Specifies a read-only configuration for the volume. Defaults to false (read/write).

    volumeAttributes

    VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.

  18. class CSIVolumeSourceFields extends AnyRef
  19. case class Capabilities(add: Optional[Vector[String]] = Optional.Absent, drop: Optional[Vector[String]] = Optional.Absent) extends Product with Serializable

    Adds and removes POSIX capabilities from running containers.

    Adds and removes POSIX capabilities from running containers.

    add

    Added capabilities

    drop

    Removed capabilities

  20. class CapabilitiesFields extends AnyRef
  21. case class CephFSPersistentVolumeSource(monitors: Vector[String], path: Optional[String] = Optional.Absent, readOnly: Optional[Boolean] = Optional.Absent, secretFile: Optional[String] = Optional.Absent, secretRef: Optional[SecretReference] = Optional.Absent, user: Optional[String] = Optional.Absent) extends Product with Serializable

    Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.

    Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.

    monitors

    Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it

    path

    Optional: Used as the mounted root, rather than the full Ceph tree, default is /

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it

    secretFile

    Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it

    user

    Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it

  22. class CephFSPersistentVolumeSourceFields extends AnyRef
  23. case class CephFSVolumeSource(monitors: Vector[String], path: Optional[String] = Optional.Absent, readOnly: Optional[Boolean] = Optional.Absent, secretFile: Optional[String] = Optional.Absent, secretRef: Optional[LocalObjectReference] = Optional.Absent, user: Optional[String] = Optional.Absent) extends Product with Serializable

    Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.

    Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.

    monitors

    Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it

    path

    Optional: Used as the mounted root, rather than the full Ceph tree, default is /

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it

    secretFile

    Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it

    user

    Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it

  24. class CephFSVolumeSourceFields extends AnyRef
  25. case class CinderPersistentVolumeSource(fsType: Optional[String] = Optional.Absent, readOnly: Optional[Boolean] = Optional.Absent, secretRef: Optional[SecretReference] = Optional.Absent, volumeID: String) extends Product with Serializable

    Represents a cinder volume resource in Openstack.

    Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.

    fsType

    Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md

    volumeID

    volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md

  26. class CinderPersistentVolumeSourceFields extends AnyRef
  27. case class CinderVolumeSource(fsType: Optional[String] = Optional.Absent, readOnly: Optional[Boolean] = Optional.Absent, secretRef: Optional[LocalObjectReference] = Optional.Absent, volumeID: String) extends Product with Serializable

    Represents a cinder volume resource in Openstack.

    Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.

    fsType

    Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md

    volumeID

    volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md

  28. class CinderVolumeSourceFields extends AnyRef
  29. case class ClientIPConfig(timeoutSeconds: Optional[Int] = Optional.Absent) extends Product with Serializable

    ClientIPConfig represents the configurations of Client IP based session affinity.

    ClientIPConfig represents the configurations of Client IP based session affinity.

    timeoutSeconds

    timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be >0 && <=86400(for 1 day) if ServiceAffinity == "ClientIP". Default value is 10800(for 3 hours).

  30. class ClientIPConfigFields extends AnyRef
  31. case class ComponentCondition(error: Optional[String] = Optional.Absent, message: Optional[String] = Optional.Absent, status: String, type: String) extends Product with Serializable

    Information about the condition of a component.

    Information about the condition of a component.

    error

    Condition error code for a component. For example, a health check error code.

    message

    Message about the condition for a component. For example, information about a health check.

    status

    Status of the condition for a component. Valid values for "Healthy": "True", "False", or "Unknown".

    type

    Type of condition for a component. Valid value: "Healthy"

  32. class ComponentConditionFields extends AnyRef
  33. case class ComponentStatus(conditions: Optional[Vector[ComponentCondition]] = Optional.Absent, metadata: Optional[ObjectMeta] = Optional.Absent) extends Product with Serializable

    ComponentStatus (and ComponentStatusList) holds the cluster validation info.

    ComponentStatus (and ComponentStatusList) holds the cluster validation info. Deprecated: This API is deprecated in v1.19+

    conditions

    List of component conditions observed

  34. class ComponentStatusFields extends AnyRef
  35. case class ConfigMap(binaryData: Optional[Map[String, Chunk[Byte]]] = Optional.Absent, data: Optional[Map[String, String]] = Optional.Absent, immutable: Optional[Boolean] = Optional.Absent, metadata: Optional[ObjectMeta] = Optional.Absent) extends Product with Serializable

    ConfigMap holds configuration data for pods to consume.

    ConfigMap holds configuration data for pods to consume.

    binaryData

    BinaryData contains the binary data. Each key must consist of alphanumeric characters, '-', '_' or '.'. BinaryData can contain byte sequences that are not in the UTF-8 range. The keys stored in BinaryData must not overlap with the ones in the Data field, this is enforced during validation process. Using this field will require 1.10+ apiserver and kubelet.

    data

    Data contains the configuration data. Each key must consist of alphanumeric characters, '-', '_' or '.'. Values with non-UTF-8 byte sequences must use the BinaryData field. The keys stored in Data must not overlap with the keys in the BinaryData field, this is enforced during validation process.

    immutable

    Immutable, if set to true, ensures that data stored in the ConfigMap cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil.

  36. case class ConfigMapEnvSource(name: Optional[String] = Optional.Absent, optional: Optional[Boolean] = Optional.Absent) extends Product with Serializable

    ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.

    ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.

    The contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.

    name

    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

    optional

    Specify whether the ConfigMap must be defined

  37. class ConfigMapEnvSourceFields extends AnyRef
  38. class ConfigMapFields extends AnyRef
  39. case class ConfigMapKeySelector(key: String, name: Optional[String] = Optional.Absent, optional: Optional[Boolean] = Optional.Absent) extends Product with Serializable

    Selects a key from a ConfigMap.

    Selects a key from a ConfigMap.

    key

    The key to select.

    name

    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

    optional

    Specify whether the ConfigMap or its key must be defined

  40. class ConfigMapKeySelectorFields extends AnyRef
  41. case class ConfigMapNodeConfigSource(kubeletConfigKey: String, name: String, namespace: String, resourceVersion: Optional[String] = Optional.Absent, uid: Optional[String] = Optional.Absent) extends Product with Serializable

    ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node.

    ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node. This API is deprecated since 1.22: https://git.k8s.io/enhancements/keps/sig-node/281-dynamic-kubelet-configuration

    kubeletConfigKey

    KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases.

    name

    Name is the metadata.name of the referenced ConfigMap. This field is required in all cases.

    namespace

    Namespace is the metadata.namespace of the referenced ConfigMap. This field is required in all cases.

    resourceVersion

    ResourceVersion is the metadata.ResourceVersion of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.

    uid

    UID is the metadata.UID of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.

  42. class ConfigMapNodeConfigSourceFields extends AnyRef
  43. case class ConfigMapProjection(items: Optional[Vector[KeyToPath]] = Optional.Absent, name: Optional[String] = Optional.Absent, optional: Optional[Boolean] = Optional.Absent) extends Product with Serializable

    Adapts a ConfigMap into a projected volume.

    Adapts a ConfigMap into a projected volume.

    The contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.

    items

    If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.

    name

    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

    optional

    Specify whether the ConfigMap or its keys must be defined

  44. class ConfigMapProjectionFields extends AnyRef
  45. case class ConfigMapVolumeSource(defaultMode: Optional[Int] = Optional.Absent, items: Optional[Vector[KeyToPath]] = Optional.Absent, name: Optional[String] = Optional.Absent, optional: Optional[Boolean] = Optional.Absent) extends Product with Serializable

    Adapts a ConfigMap into a volume.

    Adapts a ConfigMap into a volume.

    The contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.

    defaultMode

    Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.

    items

    If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.

    name

    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

    optional

    Specify whether the ConfigMap or its keys must be defined

  46. class ConfigMapVolumeSourceFields extends AnyRef
  47. case class Container(args: Optional[Vector[String]] = Optional.Absent, command: Optional[Vector[String]] = Optional.Absent, env: Optional[Vector[EnvVar]] = Optional.Absent, envFrom: Optional[Vector[EnvFromSource]] = Optional.Absent, image: Optional[String] = Optional.Absent, imagePullPolicy: Optional[String] = Optional.Absent, lifecycle: Optional[Lifecycle] = Optional.Absent, livenessProbe: Optional[Probe] = Optional.Absent, name: String, ports: Optional[Vector[ContainerPort]] = Optional.Absent, readinessProbe: Optional[Probe] = Optional.Absent, resources: Optional[ResourceRequirements] = Optional.Absent, securityContext: Optional[SecurityContext] = Optional.Absent, startupProbe: Optional[Probe] = Optional.Absent, stdin: Optional[Boolean] = Optional.Absent, stdinOnce: Optional[Boolean] = Optional.Absent, terminationMessagePath: Optional[String] = Optional.Absent, terminationMessagePolicy: Optional[String] = Optional.Absent, tty: Optional[Boolean] = Optional.Absent, volumeDevices: Optional[Vector[VolumeDevice]] = Optional.Absent, volumeMounts: Optional[Vector[VolumeMount]] = Optional.Absent, workingDir: Optional[String] = Optional.Absent) extends Product with Serializable

    A single application container that you want to run within a pod.

    A single application container that you want to run within a pod.

    args

    Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $$(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$$$ are reduced to a single $$, which allows for escaping the $$(VAR_NAME) syntax: i.e. "$$$$(VAR_NAME)" will produce the string literal "$$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell

    command

    Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $$(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$$$ are reduced to a single $$, which allows for escaping the $$(VAR_NAME) syntax: i.e. "$$$$(VAR_NAME)" will produce the string literal "$$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell

    env

    List of environment variables to set in the container. Cannot be updated.

    envFrom

    List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.

    image

    Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.

    imagePullPolicy

    Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images

    name

    Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.

    ports

    List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated.

    stdin

    Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.

    stdinOnce

    Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false

    terminationMessagePath

    Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.

    terminationMessagePolicy

    Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.

    tty

    Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.

    volumeDevices

    volumeDevices is the list of block devices to be used by the container.

    volumeMounts

    Pod volumes to mount into the container's filesystem. Cannot be updated.

    workingDir

    Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.

  48. class ContainerFields extends AnyRef
  49. case class ContainerImage(names: Optional[Vector[String]] = Optional.Absent, sizeBytes: Optional[Long] = Optional.Absent) extends Product with Serializable

    Describe a container image

    Describe a container image

    names

    Names by which this image is known. e.g. ["k8s.gcr.io/hyperkube:v1.0.7", "dockerhub.io/google_containers/hyperkube:v1.0.7"]

    sizeBytes

    The size of the image in bytes.

  50. class ContainerImageFields extends AnyRef
  51. case class ContainerPort(containerPort: Int, hostIP: Optional[String] = Optional.Absent, hostPort: Optional[Int] = Optional.Absent, name: Optional[String] = Optional.Absent, protocol: Optional[String] = Optional.Absent) extends Product with Serializable

    ContainerPort represents a network port in a single container.

    ContainerPort represents a network port in a single container.

    containerPort

    Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.

    hostIP

    What host IP to bind the external port to.

    hostPort

    Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.

    name

    If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.

    protocol

    Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP".

  52. class ContainerPortFields extends AnyRef
  53. case class ContainerState(running: Optional[ContainerStateRunning] = Optional.Absent, terminated: Optional[ContainerStateTerminated] = Optional.Absent, waiting: Optional[ContainerStateWaiting] = Optional.Absent) extends Product with Serializable

    ContainerState holds a possible state of container.

    ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting.

  54. class ContainerStateFields extends AnyRef
  55. case class ContainerStateRunning(startedAt: Optional[Time] = Optional.Absent) extends Product with Serializable

    ContainerStateRunning is a running state of a container.

  56. class ContainerStateRunningFields extends AnyRef
  57. case class ContainerStateTerminated(containerID: Optional[String] = Optional.Absent, exitCode: Int, finishedAt: Optional[Time] = Optional.Absent, message: Optional[String] = Optional.Absent, reason: Optional[String] = Optional.Absent, signal: Optional[Int] = Optional.Absent, startedAt: Optional[Time] = Optional.Absent) extends Product with Serializable

    ContainerStateTerminated is a terminated state of a container.

    ContainerStateTerminated is a terminated state of a container.

    containerID

    Container's ID in the format 'docker://<container_id>'

    exitCode

    Exit status from the last termination of the container

    message

    Message regarding the last termination of the container

    reason

    (brief) reason from the last termination of the container

    signal

    Signal from the last termination of the container

  58. class ContainerStateTerminatedFields extends AnyRef
  59. case class ContainerStateWaiting(message: Optional[String] = Optional.Absent, reason: Optional[String] = Optional.Absent) extends Product with Serializable

    ContainerStateWaiting is a waiting state of a container.

    ContainerStateWaiting is a waiting state of a container.

    message

    Message regarding why the container is not yet running.

    reason

    (brief) reason the container is not yet running.

  60. class ContainerStateWaitingFields extends AnyRef
  61. case class ContainerStatus(containerID: Optional[String] = Optional.Absent, image: String, imageID: String, lastState: Optional[ContainerState] = Optional.Absent, name: String, ready: Boolean, restartCount: Int, started: Optional[Boolean] = Optional.Absent, state: Optional[ContainerState] = Optional.Absent) extends Product with Serializable

    ContainerStatus contains details for the current status of this container.

    ContainerStatus contains details for the current status of this container.

    containerID

    Container's ID in the format 'docker://<container_id>'.

    image

    The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images.

    imageID

    ImageID of the container's image.

    name

    This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.

    ready

    Specifies whether the container has passed its readiness probe.

    restartCount

    The number of times the container has been restarted.

    started

    Specifies whether the container has passed its startup probe. Initialized as false, becomes true after startupProbe is considered successful. Resets to false when the container is restarted, or if kubelet loses state temporarily. Is always true when no startupProbe is defined.

  62. class ContainerStatusFields extends AnyRef
  63. case class DaemonEndpoint(Port: Int) extends Product with Serializable

    DaemonEndpoint contains information about a single Daemon endpoint.

    DaemonEndpoint contains information about a single Daemon endpoint.

    Port

    Port number of the given endpoint.

  64. class DaemonEndpointFields extends AnyRef
  65. case class DownwardAPIProjection(items: Optional[Vector[DownwardAPIVolumeFile]] = Optional.Absent) extends Product with Serializable

    Represents downward API info for projecting into a projected volume.

    Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.

    items

    Items is a list of DownwardAPIVolume file

  66. class DownwardAPIProjectionFields extends AnyRef
  67. case class DownwardAPIVolumeFile(fieldRef: Optional[ObjectFieldSelector] = Optional.Absent, mode: Optional[Int] = Optional.Absent, path: String, resourceFieldRef: Optional[ResourceFieldSelector] = Optional.Absent) extends Product with Serializable

    DownwardAPIVolumeFile represents information to create the file containing the pod field

    DownwardAPIVolumeFile represents information to create the file containing the pod field

    mode

    Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.

    path

    Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'

  68. class DownwardAPIVolumeFileFields extends AnyRef
  69. case class DownwardAPIVolumeSource(defaultMode: Optional[Int] = Optional.Absent, items: Optional[Vector[DownwardAPIVolumeFile]] = Optional.Absent) extends Product with Serializable

    DownwardAPIVolumeSource represents a volume containing downward API info.

    DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.

    defaultMode

    Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.

    items

    Items is a list of downward API volume file

  70. class DownwardAPIVolumeSourceFields extends AnyRef
  71. case class EmptyDirVolumeSource(medium: Optional[String] = Optional.Absent, sizeLimit: Optional[Quantity] = Optional.Absent) extends Product with Serializable

    Represents an empty directory for a pod.

    Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.

    medium

    What type of storage medium should back this directory. The default is "" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir

  72. class EmptyDirVolumeSourceFields extends AnyRef
  73. case class EndpointAddress(hostname: Optional[String] = Optional.Absent, ip: String, nodeName: Optional[String] = Optional.Absent, targetRef: Optional[ObjectReference] = Optional.Absent) extends Product with Serializable

    EndpointAddress is a tuple that describes single IP address.

    EndpointAddress is a tuple that describes single IP address.

    hostname

    The Hostname of this endpoint

    ip

    The IP of this endpoint. May not be loopback (127.0.0.0/8), link-local (169.254.0.0/16), or link-local multicast ((224.0.0.0/24). IPv6 is also accepted but not fully supported on all platforms. Also, certain kubernetes components, like kube-proxy, are not IPv6 ready.

    nodeName

    Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.

  74. class EndpointAddressFields extends AnyRef
  75. case class EndpointPort(appProtocol: Optional[String] = Optional.Absent, name: Optional[String] = Optional.Absent, port: Int, protocol: Optional[String] = Optional.Absent) extends Product with Serializable

    EndpointPort is a tuple that describes a single port.

    EndpointPort is a tuple that describes a single port.

    appProtocol

    The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol.

    name

    The name of this port. This must match the 'name' field in the corresponding ServicePort. Must be a DNS_LABEL. Optional only if one port is defined.

    port

    The port number of the endpoint.

    protocol

    The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.

  76. class EndpointPortFields extends AnyRef
  77. case class EndpointSubset(addresses: Optional[Vector[EndpointAddress]] = Optional.Absent, notReadyAddresses: Optional[Vector[EndpointAddress]] = Optional.Absent, ports: Optional[Vector[EndpointPort]] = Optional.Absent) extends Product with Serializable

    EndpointSubset is a group of addresses with a common set of ports.

    EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given: { Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}], Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}] } The resulting set of endpoints can be viewed as: a: [ 10.10.1.1:8675, 10.10.2.2:8675 ], b: [ 10.10.1.1:309, 10.10.2.2:309 ]

    addresses

    IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize.

    notReadyAddresses

    IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check.

    ports

    Port numbers available on the related IP addresses.

  78. class EndpointSubsetFields extends AnyRef
  79. case class Endpoints(metadata: Optional[ObjectMeta] = Optional.Absent, subsets: Optional[Vector[EndpointSubset]] = Optional.Absent) extends Product with Serializable

    Endpoints is a collection of endpoints that implement the actual service.

    Endpoints is a collection of endpoints that implement the actual service. Example: Name: "mysvc", Subsets: [ { Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}], Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}] }, { Addresses: [{"ip": "10.10.3.3"}], Ports: [{"name": "a", "port": 93}, {"name": "b", "port": 76}] }, ]

    subsets

    The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses in the same subset. Sets of addresses and ports that comprise a service.

  80. class EndpointsFields extends AnyRef
  81. case class EnvFromSource(configMapRef: Optional[ConfigMapEnvSource] = Optional.Absent, prefix: Optional[String] = Optional.Absent, secretRef: Optional[SecretEnvSource] = Optional.Absent) extends Product with Serializable

    EnvFromSource represents the source of a set of ConfigMaps

    EnvFromSource represents the source of a set of ConfigMaps

    prefix

    An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.

  82. class EnvFromSourceFields extends AnyRef
  83. case class EnvVar(name: String, value: Optional[String] = Optional.Absent, valueFrom: Optional[EnvVarSource] = Optional.Absent) extends Product with Serializable

    EnvVar represents an environment variable present in a Container.

    EnvVar represents an environment variable present in a Container.

    name

    Name of the environment variable. Must be a C_IDENTIFIER.

    value

    Variable references $$(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$$$ are reduced to a single $$, which allows for escaping the $$(VAR_NAME) syntax: i.e. "$$$$(VAR_NAME)" will produce the string literal "$$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".

  84. class EnvVarFields extends AnyRef
  85. case class EnvVarSource(configMapKeyRef: Optional[ConfigMapKeySelector] = Optional.Absent, fieldRef: Optional[ObjectFieldSelector] = Optional.Absent, resourceFieldRef: Optional[ResourceFieldSelector] = Optional.Absent, secretKeyRef: Optional[SecretKeySelector] = Optional.Absent) extends Product with Serializable

    EnvVarSource represents a source for the value of an EnvVar.

  86. class EnvVarSourceFields extends AnyRef
  87. case class EphemeralContainer(args: Optional[Vector[String]] = Optional.Absent, command: Optional[Vector[String]] = Optional.Absent, env: Optional[Vector[EnvVar]] = Optional.Absent, envFrom: Optional[Vector[EnvFromSource]] = Optional.Absent, image: Optional[String] = Optional.Absent, imagePullPolicy: Optional[String] = Optional.Absent, lifecycle: Optional[Lifecycle] = Optional.Absent, livenessProbe: Optional[Probe] = Optional.Absent, name: String, ports: Optional[Vector[ContainerPort]] = Optional.Absent, readinessProbe: Optional[Probe] = Optional.Absent, resources: Optional[ResourceRequirements] = Optional.Absent, securityContext: Optional[SecurityContext] = Optional.Absent, startupProbe: Optional[Probe] = Optional.Absent, stdin: Optional[Boolean] = Optional.Absent, stdinOnce: Optional[Boolean] = Optional.Absent, targetContainerName: Optional[String] = Optional.Absent, terminationMessagePath: Optional[String] = Optional.Absent, terminationMessagePolicy: Optional[String] = Optional.Absent, tty: Optional[Boolean] = Optional.Absent, volumeDevices: Optional[Vector[VolumeDevice]] = Optional.Absent, volumeMounts: Optional[Vector[VolumeMount]] = Optional.Absent, workingDir: Optional[String] = Optional.Absent) extends Product with Serializable

    An EphemeralContainer is a temporary container that you may add to an existing Pod for user-initiated activities such as debugging.

    An EphemeralContainer is a temporary container that you may add to an existing Pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a Pod is removed or restarted. The kubelet may evict a Pod if an ephemeral container causes the Pod to exceed its resource allocation.

    To add an ephemeral container, use the ephemeralcontainers subresource of an existing Pod. Ephemeral containers may not be removed or restarted.

    This is a beta feature available on clusters that haven't disabled the EphemeralContainers feature gate.

    args

    Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $$(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$$$ are reduced to a single $$, which allows for escaping the $$(VAR_NAME) syntax: i.e. "$$$$(VAR_NAME)" will produce the string literal "$$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell

    command

    Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $$(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$$$ are reduced to a single $$, which allows for escaping the $$(VAR_NAME) syntax: i.e. "$$$$(VAR_NAME)" will produce the string literal "$$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell

    env

    List of environment variables to set in the container. Cannot be updated.

    envFrom

    List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.

    image

    Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images

    imagePullPolicy

    Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images

    name

    Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.

    ports

    Ports are not allowed for ephemeral containers.

    stdin

    Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.

    stdinOnce

    Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false

    targetContainerName

    If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container uses the namespaces configured in the Pod spec. The container runtime must implement support for this feature. If the runtime does not support namespace targeting then the result of setting this field is undefined.

    terminationMessagePath

    Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.

    terminationMessagePolicy

    Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.

    tty

    Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.

    volumeDevices

    volumeDevices is the list of block devices to be used by the container.

    volumeMounts

    Pod volumes to mount into the container's filesystem. Subpath mounts are not allowed for ephemeral containers. Cannot be updated.

    workingDir

    Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.

  88. class EphemeralContainerFields extends AnyRef
  89. case class EphemeralVolumeSource(volumeClaimTemplate: Optional[PersistentVolumeClaimTemplate] = Optional.Absent) extends Product with Serializable

    Represents an ephemeral volume that is handled by a normal storage driver.

  90. class EphemeralVolumeSourceFields extends AnyRef
  91. case class Event(action: Optional[String] = Optional.Absent, count: Optional[Int] = Optional.Absent, eventTime: Optional[MicroTime] = Optional.Absent, firstTimestamp: Optional[Time] = Optional.Absent, involvedObject: ObjectReference, lastTimestamp: Optional[Time] = Optional.Absent, message: Optional[String] = Optional.Absent, metadata: ObjectMeta, reason: Optional[String] = Optional.Absent, related: Optional[ObjectReference] = Optional.Absent, reportingComponent: Optional[String] = Optional.Absent, reportingInstance: Optional[String] = Optional.Absent, series: Optional[EventSeries] = Optional.Absent, source: Optional[EventSource] = Optional.Absent, type: Optional[String] = Optional.Absent) extends Product with Serializable

    Event is a report of an event somewhere in the cluster.

    Event is a report of an event somewhere in the cluster. Events have a limited retention time and triggers and messages may evolve with time. Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason. Events should be treated as informative, best-effort, supplemental data.

    action

    What action was taken/failed regarding to the Regarding object.

    count

    The number of times this event has occurred.

    message

    A human-readable description of the status of this operation.

    reason

    This should be a short, machine understandable string that gives the reason for the transition into the object's current status.

    reportingComponent

    Name of the controller that emitted this Event, e.g. kubernetes.io/kubelet.

    reportingInstance

    ID of the controller instance, e.g. kubelet-xyzf.

    type

    Type of this event (Normal, Warning), new types could be added in the future

  92. class EventFields extends AnyRef
  93. case class EventSeries(count: Optional[Int] = Optional.Absent, lastObservedTime: Optional[MicroTime] = Optional.Absent) extends Product with Serializable

    EventSeries contain information on series of events, i.e.

    EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.

    count

    Number of occurrences in this series up to the last heartbeat time

  94. class EventSeriesFields extends AnyRef
  95. case class EventSource(component: Optional[String] = Optional.Absent, host: Optional[String] = Optional.Absent) extends Product with Serializable

    EventSource contains information for an event.

    EventSource contains information for an event.

    component

    Component from which the event is generated.

    host

    Node name on which the event is generated.

  96. class EventSourceFields extends AnyRef
  97. case class ExecAction(command: Optional[Vector[String]] = Optional.Absent) extends Product with Serializable

    ExecAction describes a "run in container" action.

    ExecAction describes a "run in container" action.

    command

    Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.

  98. class ExecActionFields extends AnyRef
  99. case class FCVolumeSource(fsType: Optional[String] = Optional.Absent, lun: Optional[Int] = Optional.Absent, readOnly: Optional[Boolean] = Optional.Absent, targetWWNs: Optional[Vector[String]] = Optional.Absent, wwids: Optional[Vector[String]] = Optional.Absent) extends Product with Serializable

    Represents a Fibre Channel volume.

    Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.

    fsType

    Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.

    lun

    Optional: FC target lun number

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    targetWWNs

    Optional: FC target worldwide names (WWNs)

    wwids

    Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.

  100. class FCVolumeSourceFields extends AnyRef
  101. case class FlexPersistentVolumeSource(driver: String, fsType: Optional[String] = Optional.Absent, options: Optional[Map[String, String]] = Optional.Absent, readOnly: Optional[Boolean] = Optional.Absent, secretRef: Optional[SecretReference] = Optional.Absent) extends Product with Serializable

    FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.

    FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.

    driver

    Driver is the name of the driver to use for this volume.

    fsType

    Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script.

    options

    Optional: Extra command options if any.

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

  102. class FlexPersistentVolumeSourceFields extends AnyRef
  103. case class FlexVolumeSource(driver: String, fsType: Optional[String] = Optional.Absent, options: Optional[Map[String, String]] = Optional.Absent, readOnly: Optional[Boolean] = Optional.Absent, secretRef: Optional[LocalObjectReference] = Optional.Absent) extends Product with Serializable

    FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.

    FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.

    driver

    Driver is the name of the driver to use for this volume.

    fsType

    Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script.

    options

    Optional: Extra command options if any.

    readOnly

    Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

  104. class FlexVolumeSourceFields extends AnyRef
  105. case class FlockerVolumeSource(datasetName: Optional[String] = Optional.Absent, datasetUUID: Optional[String] = Optional.Absent) extends Product with Serializable

    Represents a Flocker volume mounted by the Flocker agent.

    Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.

    datasetName

    Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated

    datasetUUID

    UUID of the dataset. This is unique identifier of a Flocker dataset

  106. class FlockerVolumeSourceFields extends AnyRef
  107. case class GCEPersistentDiskVolumeSource(fsType: Optional[String] = Optional.Absent, partition: Optional[Int] = Optional.Absent, pdName: String, readOnly: Optional[Boolean] = Optional.Absent) extends Product with Serializable

    Represents a Persistent Disk resource in Google Compute Engine.

    Represents a Persistent Disk resource in Google Compute Engine.

    A GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.

    fsType

    Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk

    partition

    The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk

    pdName

    Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk

  108. class GCEPersistentDiskVolumeSourceFields extends AnyRef
  109. case class GRPCAction(port: Int, service: Optional[String] = Optional.Absent) extends Product with Serializable

    port

    Port number of the gRPC service. Number must be in the range 1 to 65535.

    service

    Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by gRPC.

  110. class GRPCActionFields extends AnyRef
  111. case class GitRepoVolumeSource(directory: Optional[String] = Optional.Absent, repository: String, revision: Optional[String] = Optional.Absent) extends Product with Serializable

    Represents a volume that is populated with the contents of a git repository.

    Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.

    DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.

    directory

    Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.

    repository

    Repository URL

    revision

    Commit hash for the specified revision.

  112. class GitRepoVolumeSourceFields extends AnyRef
  113. case class GlusterfsPersistentVolumeSource(endpoints: String, endpointsNamespace: Optional[String] = Optional.Absent, path: String, readOnly: Optional[Boolean] = Optional.Absent) extends Product with Serializable

    Represents a Glusterfs mount that lasts the lifetime of a pod.

    Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.

    endpoints

    EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod

    endpointsNamespace

    EndpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod

    path

    Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod

    readOnly

    ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod

  114. class GlusterfsPersistentVolumeSourceFields extends AnyRef
  115. case class GlusterfsVolumeSource(endpoints: String, path: String, readOnly: Optional[Boolean] = Optional.Absent) extends Product with Serializable

    Represents a Glusterfs mount that lasts the lifetime of a pod.

    Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.

    endpoints

    EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod

    path

    Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod

    readOnly

    ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod

  116. class GlusterfsVolumeSourceFields extends AnyRef
  117. case class HTTPGetAction(host: Optional[String] = Optional.Absent, httpHeaders: Optional[Vector[HTTPHeader]] = Optional.Absent, path: Optional[String] = Optional.Absent, port: IntOrString, scheme: Optional[String] = Optional.Absent) extends Product with Serializable

    HTTPGetAction describes an action based on HTTP Get requests.

    HTTPGetAction describes an action based on HTTP Get requests.

    host

    Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.

    httpHeaders

    Custom headers to set in the request. HTTP allows repeated headers.

    path

    Path to access on the HTTP server.

    scheme

    Scheme to use for connecting to the host. Defaults to HTTP.

  118. class HTTPGetActionFields extends AnyRef
  119. case class HTTPHeader(name: String, value: String) extends Product with Serializable

    HTTPHeader describes a custom header to be used in HTTP probes

    HTTPHeader describes a custom header to be used in HTTP probes

    name

    The header field name

    value

    The header field value

  120. class HTTPHeaderFields extends AnyRef
  121. case class HostAlias(hostnames: Optional[Vector[String]] = Optional.Absent, ip: Optional[String] = Optional.Absent) extends Product with Serializable

    HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.

    HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.

    hostnames

    Hostnames for the above IP address.

    ip

    IP address of the host file entry.

  122. class HostAliasFields extends AnyRef
  123. case class HostPathVolumeSource(path: String, type: Optional[String] = Optional.Absent) extends Product with Serializable

    Represents a host path mapped into a pod.

    Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.

    path

    Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath

    type

    Type for HostPath Volume Defaults to "" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath

  124. class HostPathVolumeSourceFields extends AnyRef
  125. case class ISCSIPersistentVolumeSource(chapAuthDiscovery: Optional[Boolean] = Optional.Absent, chapAuthSession: Optional[Boolean] = Optional.Absent, fsType: Optional[String] = Optional.Absent, initiatorName: Optional[String] = Optional.Absent, iqn: String, iscsiInterface: Optional[String] = Optional.Absent, lun: Int, portals: Optional[Vector[String]] = Optional.Absent, readOnly: Optional[Boolean] = Optional.Absent, secretRef: Optional[SecretReference] = Optional.Absent, targetPortal: String) extends Product with Serializable

    ISCSIPersistentVolumeSource represents an ISCSI disk.

    ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.

    chapAuthDiscovery

    whether support iSCSI Discovery CHAP authentication

    chapAuthSession

    whether support iSCSI Session CHAP authentication

    fsType

    Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi

    initiatorName

    Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.

    iqn

    Target iSCSI Qualified Name.

    iscsiInterface

    iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).

    lun

    iSCSI Target Lun number.

    portals

    iSCSI Target Portal List. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.

    targetPortal

    iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).

  126. class ISCSIPersistentVolumeSourceFields extends AnyRef
  127. case class ISCSIVolumeSource(chapAuthDiscovery: Optional[Boolean] = Optional.Absent, chapAuthSession: Optional[Boolean] = Optional.Absent, fsType: Optional[String] = Optional.Absent, initiatorName: Optional[String] = Optional.Absent, iqn: String, iscsiInterface: Optional[String] = Optional.Absent, lun: Int, portals: Optional[Vector[String]] = Optional.Absent, readOnly: Optional[Boolean] = Optional.Absent, secretRef: Optional[LocalObjectReference] = Optional.Absent, targetPortal: String) extends Product with Serializable

    Represents an ISCSI disk.

    Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.

    chapAuthDiscovery

    whether support iSCSI Discovery CHAP authentication

    chapAuthSession

    whether support iSCSI Session CHAP authentication

    fsType

    Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi

    initiatorName

    Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.

    iqn

    Target iSCSI Qualified Name.

    iscsiInterface

    iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).

    lun

    iSCSI Target Lun number.

    portals

    iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.

    targetPortal

    iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).

  128. class ISCSIVolumeSourceFields extends AnyRef
  129. case class KeyToPath(key: String, mode: Optional[Int] = Optional.Absent, path: String) extends Product with Serializable

    Maps a string key to a path within a volume.

    Maps a string key to a path within a volume.

    key

    The key to project.

    mode

    Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.

    path

    The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.

  130. class KeyToPathFields extends AnyRef
  131. case class Lifecycle(postStart: Optional[LifecycleHandler] = Optional.Absent, preStop: Optional[LifecycleHandler] = Optional.Absent) extends Product with Serializable

    Lifecycle describes actions that the management system should take in response to container lifecycle events.

    Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.

  132. class LifecycleFields extends AnyRef
  133. case class LifecycleHandler(exec: Optional[ExecAction] = Optional.Absent, httpGet: Optional[HTTPGetAction] = Optional.Absent, tcpSocket: Optional[TCPSocketAction] = Optional.Absent) extends Product with Serializable

    LifecycleHandler defines a specific action that should be taken in a lifecycle hook.

    LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified.

  134. class LifecycleHandlerFields extends AnyRef
  135. case class LimitRange(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[LimitRangeSpec] = Optional.Absent) extends Product with Serializable

    LimitRange sets resource usage limits for each kind of resource in a Namespace.

  136. class LimitRangeFields extends AnyRef
  137. case class LimitRangeItem(default: Optional[Map[String, Quantity]] = Optional.Absent, defaultRequest: Optional[Map[String, Quantity]] = Optional.Absent, max: Optional[Map[String, Quantity]] = Optional.Absent, maxLimitRequestRatio: Optional[Map[String, Quantity]] = Optional.Absent, min: Optional[Map[String, Quantity]] = Optional.Absent, type: String) extends Product with Serializable

    LimitRangeItem defines a min/max usage limit for any resource that matches on kind.

    LimitRangeItem defines a min/max usage limit for any resource that matches on kind.

    default

    Default resource requirement limit value by resource name if resource limit is omitted.

    defaultRequest

    DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.

    max

    Max usage constraints on this kind by resource name.

    maxLimitRequestRatio

    MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource.

    min

    Min usage constraints on this kind by resource name.

    type

    Type of resource that this limit applies to.

  138. class LimitRangeItemFields extends AnyRef
  139. case class LimitRangeSpec(limits: Vector[LimitRangeItem]) extends Product with Serializable

    LimitRangeSpec defines a min/max usage limit for resources that match on kind.

    LimitRangeSpec defines a min/max usage limit for resources that match on kind.

    limits

    Limits is the list of LimitRangeItem objects that are enforced.

  140. class LimitRangeSpecFields extends AnyRef
  141. case class LoadBalancerIngress(hostname: Optional[String] = Optional.Absent, ip: Optional[String] = Optional.Absent, ports: Optional[Vector[PortStatus]] = Optional.Absent) extends Product with Serializable

    LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.

    LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.

    hostname

    Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)

    ip

    IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)

    ports

    Ports is a list of records of service ports If used, every port defined in the service should have an entry in it

  142. class LoadBalancerIngressFields extends AnyRef
  143. case class LoadBalancerStatus(ingress: Optional[Vector[LoadBalancerIngress]] = Optional.Absent) extends Product with Serializable

    LoadBalancerStatus represents the status of a load-balancer.

    LoadBalancerStatus represents the status of a load-balancer.

    ingress

    Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.

  144. class LoadBalancerStatusFields extends AnyRef
  145. case class LocalObjectReference(name: Optional[String] = Optional.Absent) extends Product with Serializable

    LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.

    LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.

    name

    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

  146. class LocalObjectReferenceFields extends AnyRef
  147. case class LocalVolumeSource(fsType: Optional[String] = Optional.Absent, path: String) extends Product with Serializable

    Local represents directly-attached storage with node affinity (Beta feature)

    Local represents directly-attached storage with node affinity (Beta feature)

    fsType

    Filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default value is to auto-select a filesystem if unspecified.

    path

    The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).

  148. class LocalVolumeSourceFields extends AnyRef
  149. case class NFSVolumeSource(path: String, readOnly: Optional[Boolean] = Optional.Absent, server: String) extends Product with Serializable

    Represents an NFS mount that lasts the lifetime of a pod.

    Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.

    path

    Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs

    readOnly

    ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs

    server

    Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs

  150. class NFSVolumeSourceFields extends AnyRef
  151. case class Namespace(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[NamespaceSpec] = Optional.Absent, status: Optional[NamespaceStatus] = Optional.Absent) extends Product with Serializable

    Namespace provides a scope for Names.

    Namespace provides a scope for Names. Use of multiple namespaces is optional.

  152. case class NamespaceCondition(lastTransitionTime: Optional[Time] = Optional.Absent, message: Optional[String] = Optional.Absent, reason: Optional[String] = Optional.Absent, status: String, type: String) extends Product with Serializable

    NamespaceCondition contains details about state of namespace.

    NamespaceCondition contains details about state of namespace.

    status

    Status of the condition, one of True, False, Unknown.

    type

    Type of namespace controller condition.

  153. class NamespaceConditionFields extends AnyRef
  154. class NamespaceFields extends AnyRef
  155. case class NamespaceSpec(finalizers: Optional[Vector[String]] = Optional.Absent) extends Product with Serializable

    NamespaceSpec describes the attributes on a Namespace.

    NamespaceSpec describes the attributes on a Namespace.

    finalizers

    Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/

  156. class NamespaceSpecFields extends AnyRef
  157. case class NamespaceStatus(conditions: Optional[Vector[NamespaceCondition]] = Optional.Absent, phase: Optional[String] = Optional.Absent) extends Product with Serializable

    NamespaceStatus is information about the current status of a Namespace.

    NamespaceStatus is information about the current status of a Namespace.

    conditions

    Represents the latest available observations of a namespace's current state.

    phase

    Phase is the current lifecycle phase of the namespace. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/

  158. class NamespaceStatusFields extends AnyRef
  159. case class Node(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[NodeSpec] = Optional.Absent, status: Optional[NodeStatus] = Optional.Absent) extends Product with Serializable

    Node is a worker node in Kubernetes.

    Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).

  160. case class NodeAddress(address: String, type: String) extends Product with Serializable

    NodeAddress contains information for the node's address.

    NodeAddress contains information for the node's address.

    address

    The node address.

    type

    Node address type, one of Hostname, ExternalIP or InternalIP.

  161. class NodeAddressFields extends AnyRef
  162. case class NodeAffinity(preferredDuringSchedulingIgnoredDuringExecution: Optional[Vector[PreferredSchedulingTerm]] = Optional.Absent, requiredDuringSchedulingIgnoredDuringExecution: Optional[NodeSelector] = Optional.Absent) extends Product with Serializable

    Node affinity is a group of node affinity scheduling rules.

    Node affinity is a group of node affinity scheduling rules.

    preferredDuringSchedulingIgnoredDuringExecution

    The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.

  163. class NodeAffinityFields extends AnyRef
  164. case class NodeCondition(lastHeartbeatTime: Optional[Time] = Optional.Absent, lastTransitionTime: Optional[Time] = Optional.Absent, message: Optional[String] = Optional.Absent, reason: Optional[String] = Optional.Absent, status: String, type: String) extends Product with Serializable

    NodeCondition contains condition information for a node.

    NodeCondition contains condition information for a node.

    message

    Human readable message indicating details about last transition.

    reason

    (brief) reason for the condition's last transition.

    status

    Status of the condition, one of True, False, Unknown.

    type

    Type of node condition.

  165. class NodeConditionFields extends AnyRef
  166. case class NodeConfigSource(configMap: Optional[ConfigMapNodeConfigSource] = Optional.Absent) extends Product with Serializable

    NodeConfigSource specifies a source of node configuration.

    NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil. This API is deprecated since 1.22

  167. class NodeConfigSourceFields extends AnyRef
  168. case class NodeConfigStatus(active: Optional[NodeConfigSource] = Optional.Absent, assigned: Optional[NodeConfigSource] = Optional.Absent, error: Optional[String] = Optional.Absent, lastKnownGood: Optional[NodeConfigSource] = Optional.Absent) extends Product with Serializable

    NodeConfigStatus describes the status of the config assigned by Node.Spec.ConfigSource.

    NodeConfigStatus describes the status of the config assigned by Node.Spec.ConfigSource.

    error

    Error describes any problems reconciling the Spec.ConfigSource to the Active config. Errors may occur, for example, attempting to checkpoint Spec.ConfigSource to the local Assigned record, attempting to checkpoint the payload associated with Spec.ConfigSource, attempting to load or validate the Assigned config, etc. Errors may occur at different points while syncing config. Earlier errors (e.g. download or checkpointing errors) will not result in a rollback to LastKnownGood, and may resolve across Kubelet retries. Later errors (e.g. loading or validating a checkpointed config) will result in a rollback to LastKnownGood. In the latter case, it is usually possible to resolve the error by fixing the config assigned in Spec.ConfigSource. You can find additional information for debugging by searching the error message in the Kubelet log. Error is a human-readable description of the error state; machines can check whether or not Error is empty, but should not rely on the stability of the Error text across Kubelet versions.

  169. class NodeConfigStatusFields extends AnyRef
  170. case class NodeDaemonEndpoints(kubeletEndpoint: Optional[DaemonEndpoint] = Optional.Absent) extends Product with Serializable

    NodeDaemonEndpoints lists ports opened by daemons running on the Node.

  171. class NodeDaemonEndpointsFields extends AnyRef
  172. class NodeFields extends AnyRef
  173. case class NodeSelector(nodeSelectorTerms: Vector[NodeSelectorTerm]) extends Product with Serializable

    A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.

    A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.

    nodeSelectorTerms

    Required. A list of node selector terms. The terms are ORed.

  174. class NodeSelectorFields extends AnyRef
  175. case class NodeSelectorRequirement(key: String, operator: String, values: Optional[Vector[String]] = Optional.Absent) extends Product with Serializable

    A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

    A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

    key

    The label key that the selector applies to.

    operator

    Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.

    values

    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.

  176. class NodeSelectorRequirementFields extends AnyRef
  177. case class NodeSelectorTerm(matchExpressions: Optional[Vector[NodeSelectorRequirement]] = Optional.Absent, matchFields: Optional[Vector[NodeSelectorRequirement]] = Optional.Absent) extends Product with Serializable

    A null or empty node selector term matches no objects.

    A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.

    matchExpressions

    A list of node selector requirements by node's labels.

    matchFields

    A list of node selector requirements by node's fields.

  178. class NodeSelectorTermFields extends AnyRef
  179. case class NodeSpec(configSource: Optional[NodeConfigSource] = Optional.Absent, externalID: Optional[String] = Optional.Absent, podCIDR: Optional[String] = Optional.Absent, podCIDRs: Optional[Vector[String]] = Optional.Absent, providerID: Optional[String] = Optional.Absent, taints: Optional[Vector[Taint]] = Optional.Absent, unschedulable: Optional[Boolean] = Optional.Absent) extends Product with Serializable

    NodeSpec describes the attributes that a node is created with.

    NodeSpec describes the attributes that a node is created with.

    externalID

    Deprecated. Not all kubelets will set this field. Remove field after 1.13. see: https://issues.k8s.io/61966

    podCIDR

    PodCIDR represents the pod IP range assigned to the node.

    podCIDRs

    podCIDRs represents the IP ranges assigned to the node for usage by Pods on that node. If this field is specified, the 0th entry must match the podCIDR field. It may contain at most 1 value for each of IPv4 and IPv6.

    providerID

    ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>

    taints

    If specified, the node's taints.

    unschedulable

    Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: https://kubernetes.io/docs/concepts/nodes/node/#manual-node-administration

  180. class NodeSpecFields extends AnyRef
  181. case class NodeStatus(addresses: Optional[Vector[NodeAddress]] = Optional.Absent, allocatable: Optional[Map[String, Quantity]] = Optional.Absent, capacity: Optional[Map[String, Quantity]] = Optional.Absent, conditions: Optional[Vector[NodeCondition]] = Optional.Absent, config: Optional[NodeConfigStatus] = Optional.Absent, daemonEndpoints: Optional[NodeDaemonEndpoints] = Optional.Absent, images: Optional[Vector[ContainerImage]] = Optional.Absent, nodeInfo: Optional[NodeSystemInfo] = Optional.Absent, phase: Optional[String] = Optional.Absent, volumesAttached: Optional[Vector[AttachedVolume]] = Optional.Absent, volumesInUse: Optional[Vector[String]] = Optional.Absent) extends Product with Serializable

    NodeStatus is information about the current status of a node.

    NodeStatus is information about the current status of a node.

    addresses

    List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#addresses Note: This field is declared as mergeable, but the merge key is not sufficiently unique, which can cause data corruption when it is merged. Callers should instead use a full-replacement patch. See http://pr.k8s.io/79391 for an example.

    allocatable

    Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.

    capacity

    Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity

    conditions

    Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition

    images

    List of container images on this node

    phase

    NodePhase is the recently observed lifecycle phase of the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated.

    volumesAttached

    List of volumes that are attached to the node.

    volumesInUse

    List of attachable volumes in use (mounted) by the node.

  182. class NodeStatusFields extends AnyRef
  183. case class NodeSystemInfo(architecture: String, bootID: String, containerRuntimeVersion: String, kernelVersion: String, kubeProxyVersion: String, kubeletVersion: String, machineID: String, operatingSystem: String, osImage: String, systemUUID: String) extends Product with Serializable

    NodeSystemInfo is a set of ids/uuids to uniquely identify the node.

    NodeSystemInfo is a set of ids/uuids to uniquely identify the node.

    architecture

    The Architecture reported by the node

    bootID

    Boot ID reported by the node.

    containerRuntimeVersion

    ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).

    kernelVersion

    Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).

    kubeProxyVersion

    KubeProxy Version reported by the node.

    kubeletVersion

    Kubelet Version reported by the node.

    machineID

    MachineID reported by the node. For unique machine identification in the cluster this field is preferred. Learn more from man(5) machine-id: http://man7.org/linux/man-pages/man5/machine-id.5.html

    operatingSystem

    The Operating System reported by the node

    osImage

    OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).

    systemUUID

    SystemUUID reported by the node. For unique machine identification MachineID is preferred. This field is specific to Red Hat hosts https://access.redhat.com/documentation/en-us/red_hat_subscription_management/1/html/rhsm/uuid

  184. class NodeSystemInfoFields extends AnyRef
  185. case class ObjectFieldSelector(apiVersion: Optional[String] = Optional.Absent, fieldPath: String) extends Product with Serializable

    ObjectFieldSelector selects an APIVersioned field of an object.

    ObjectFieldSelector selects an APIVersioned field of an object.

    apiVersion

    Version of the schema the FieldPath is written in terms of, defaults to "v1".

    fieldPath

    Path of the field to select in the specified API version.

  186. class ObjectFieldSelectorFields extends AnyRef
  187. case class ObjectReference(apiVersion: Optional[String] = Optional.Absent, fieldPath: Optional[String] = Optional.Absent, kind: Optional[String] = Optional.Absent, name: Optional[String] = Optional.Absent, namespace: Optional[String] = Optional.Absent, resourceVersion: Optional[String] = Optional.Absent, uid: Optional[String] = Optional.Absent) extends Product with Serializable

    ObjectReference contains enough information to let you inspect or modify the referred object.

    ObjectReference contains enough information to let you inspect or modify the referred object.

    apiVersion

    API version of the referent.

    fieldPath

    If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.

    kind

    Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds

    name

    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

    namespace

    Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/

    resourceVersion

    Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency

    uid

    UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids

  188. class ObjectReferenceFields extends AnyRef
  189. case class PersistentVolume(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[PersistentVolumeSpec] = Optional.Absent, status: Optional[PersistentVolumeStatus] = Optional.Absent) extends Product with Serializable

    PersistentVolume (PV) is a storage resource provisioned by an administrator.

    PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes

  190. case class PersistentVolumeClaim(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[PersistentVolumeClaimSpec] = Optional.Absent, status: Optional[PersistentVolumeClaimStatus] = Optional.Absent) extends Product with Serializable

    PersistentVolumeClaim is a user's request for and claim to a persistent volume

  191. case class PersistentVolumeClaimCondition(lastProbeTime: Optional[Time] = Optional.Absent, lastTransitionTime: Optional[Time] = Optional.Absent, message: Optional[String] = Optional.Absent, reason: Optional[String] = Optional.Absent, status: String, type: String) extends Product with Serializable

    PersistentVolumeClaimCondition contails details about state of pvc

    PersistentVolumeClaimCondition contails details about state of pvc

    message

    Human-readable message indicating details about last transition.

    reason

    Unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports "ResizeStarted" that means the underlying persistent volume is being resized.

  192. class PersistentVolumeClaimConditionFields extends AnyRef
  193. class PersistentVolumeClaimFields extends AnyRef
  194. case class PersistentVolumeClaimSpec(accessModes: Optional[Vector[String]] = Optional.Absent, dataSource: Optional[TypedLocalObjectReference] = Optional.Absent, dataSourceRef: Optional[TypedLocalObjectReference] = Optional.Absent, resources: Optional[ResourceRequirements] = Optional.Absent, selector: Optional[LabelSelector] = Optional.Absent, storageClassName: Optional[String] = Optional.Absent, volumeMode: Optional[String] = Optional.Absent, volumeName: Optional[String] = Optional.Absent) extends Product with Serializable

    PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes

    PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes

    accessModes

    AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1

    storageClassName

    Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1

    volumeMode

    volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.

    volumeName

    VolumeName is the binding reference to the PersistentVolume backing this claim.

  195. class PersistentVolumeClaimSpecFields extends AnyRef
  196. case class PersistentVolumeClaimStatus(accessModes: Optional[Vector[String]] = Optional.Absent, allocatedResources: Optional[Map[String, Quantity]] = Optional.Absent, capacity: Optional[Map[String, Quantity]] = Optional.Absent, conditions: Optional[Vector[PersistentVolumeClaimCondition]] = Optional.Absent, phase: Optional[String] = Optional.Absent, resizeStatus: Optional[String] = Optional.Absent) extends Product with Serializable

    PersistentVolumeClaimStatus is the current status of a persistent volume claim.

    PersistentVolumeClaimStatus is the current status of a persistent volume claim.

    accessModes

    AccessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1

    allocatedResources

    The storage resource within AllocatedResources tracks the capacity allocated to a PVC. It may be larger than the actual capacity when a volume expansion operation is requested. For storage quota, the larger value from allocatedResources and PVC.spec.resources is used. If allocatedResources is not set, PVC.spec.resources alone is used for quota calculation. If a volume expansion capacity request is lowered, allocatedResources is only lowered if there are no expansion operations in progress and if the actual volume capacity is equal or lower than the requested capacity. This is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.

    capacity

    Represents the actual resources of the underlying volume.

    conditions

    Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'.

    phase

    Phase represents the current phase of PersistentVolumeClaim.

    resizeStatus

    ResizeStatus stores status of resize operation. ResizeStatus is not set by default but when expansion is complete resizeStatus is set to empty string by resize controller or kubelet. This is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.

  197. class PersistentVolumeClaimStatusFields extends AnyRef
  198. case class PersistentVolumeClaimTemplate(metadata: Optional[ObjectMeta] = Optional.Absent, spec: PersistentVolumeClaimSpec) extends Product with Serializable

    PersistentVolumeClaimTemplate is used to produce PersistentVolumeClaim objects as part of an EphemeralVolumeSource.

  199. class PersistentVolumeClaimTemplateFields extends AnyRef
  200. case class PersistentVolumeClaimVolumeSource(claimName: String, readOnly: Optional[Boolean] = Optional.Absent) extends Product with Serializable

    PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace.

    PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).

    claimName

    ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims

    readOnly

    Will force the ReadOnly setting in VolumeMounts. Default false.

  201. class PersistentVolumeClaimVolumeSourceFields extends AnyRef
  202. class PersistentVolumeFields extends AnyRef
  203. case class PersistentVolumeSpec(accessModes: Optional[Vector[String]] = Optional.Absent, awsElasticBlockStore: Optional[AWSElasticBlockStoreVolumeSource] = Optional.Absent, azureDisk: Optional[AzureDiskVolumeSource] = Optional.Absent, azureFile: Optional[AzureFilePersistentVolumeSource] = Optional.Absent, capacity: Optional[Map[String, Quantity]] = Optional.Absent, cephfs: Optional[CephFSPersistentVolumeSource] = Optional.Absent, cinder: Optional[CinderPersistentVolumeSource] = Optional.Absent, claimRef: Optional[ObjectReference] = Optional.Absent, csi: Optional[CSIPersistentVolumeSource] = Optional.Absent, fc: Optional[FCVolumeSource] = Optional.Absent, flexVolume: Optional[FlexPersistentVolumeSource] = Optional.Absent, flocker: Optional[FlockerVolumeSource] = Optional.Absent, gcePersistentDisk: Optional[GCEPersistentDiskVolumeSource] = Optional.Absent, glusterfs: Optional[GlusterfsPersistentVolumeSource] = Optional.Absent, hostPath: Optional[HostPathVolumeSource] = Optional.Absent, iscsi: Optional[ISCSIPersistentVolumeSource] = Optional.Absent, local: Optional[LocalVolumeSource] = Optional.Absent, mountOptions: Optional[Vector[String]] = Optional.Absent, nfs: Optional[NFSVolumeSource] = Optional.Absent, nodeAffinity: Optional[VolumeNodeAffinity] = Optional.Absent, persistentVolumeReclaimPolicy: Optional[String] = Optional.Absent, photonPersistentDisk: Optional[PhotonPersistentDiskVolumeSource] = Optional.Absent, portworxVolume: Optional[PortworxVolumeSource] = Optional.Absent, quobyte: Optional[QuobyteVolumeSource] = Optional.Absent, rbd: Optional[RBDPersistentVolumeSource] = Optional.Absent, scaleIO: Optional[ScaleIOPersistentVolumeSource] = Optional.Absent, storageClassName: Optional[String] = Optional.Absent, storageos: Optional[StorageOSPersistentVolumeSource] = Optional.Absent, volumeMode: Optional[String] = Optional.Absent, vsphereVolume: Optional[VsphereVirtualDiskVolumeSource] = Optional.Absent) extends Product with Serializable

    PersistentVolumeSpec is the specification of a persistent volume.

    PersistentVolumeSpec is the specification of a persistent volume.

    accessModes

    AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes

    capacity

    A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity

    mountOptions

    A list of mount options, e.g. ["ro", "soft"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options

    persistentVolumeReclaimPolicy

    What happens to a persistent volume when released from its claim. Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated). Recycle must be supported by the volume plugin underlying this PersistentVolume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming

    storageClassName

    Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.

    volumeMode

    volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec.

  204. class PersistentVolumeSpecFields extends AnyRef
  205. case class PersistentVolumeStatus(message: Optional[String] = Optional.Absent, phase: Optional[String] = Optional.Absent, reason: Optional[String] = Optional.Absent) extends Product with Serializable

    PersistentVolumeStatus is the current status of a persistent volume.

    PersistentVolumeStatus is the current status of a persistent volume.

    message

    A human-readable message indicating details about why the volume is in this state.

    phase

    Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase

    reason

    Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.

  206. class PersistentVolumeStatusFields extends AnyRef
  207. case class PhotonPersistentDiskVolumeSource(fsType: Optional[String] = Optional.Absent, pdID: String) extends Product with Serializable

    Represents a Photon Controller persistent disk resource.

    Represents a Photon Controller persistent disk resource.

    fsType

    Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.

    pdID

    ID that identifies Photon Controller persistent disk

  208. class PhotonPersistentDiskVolumeSourceFields extends AnyRef
  209. case class Pod(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[PodSpec] = Optional.Absent, status: Optional[PodStatus] = Optional.Absent) extends Product with Serializable

    Pod is a collection of containers that can run on a host.

    Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.

  210. case class PodAffinity(preferredDuringSchedulingIgnoredDuringExecution: Optional[Vector[WeightedPodAffinityTerm]] = Optional.Absent, requiredDuringSchedulingIgnoredDuringExecution: Optional[Vector[PodAffinityTerm]] = Optional.Absent) extends Product with Serializable

    Pod affinity is a group of inter pod affinity scheduling rules.

    Pod affinity is a group of inter pod affinity scheduling rules.

    preferredDuringSchedulingIgnoredDuringExecution

    The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.

    requiredDuringSchedulingIgnoredDuringExecution

    If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.

  211. class PodAffinityFields extends AnyRef
  212. case class PodAffinityTerm(labelSelector: Optional[LabelSelector] = Optional.Absent, namespaceSelector: Optional[LabelSelector] = Optional.Absent, namespaces: Optional[Vector[String]] = Optional.Absent, topologyKey: String) extends Product with Serializable

    Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running

    Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running

    namespaces

    namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace"

    topologyKey

    This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.

  213. class PodAffinityTermFields extends AnyRef
  214. case class PodAntiAffinity(preferredDuringSchedulingIgnoredDuringExecution: Optional[Vector[WeightedPodAffinityTerm]] = Optional.Absent, requiredDuringSchedulingIgnoredDuringExecution: Optional[Vector[PodAffinityTerm]] = Optional.Absent) extends Product with Serializable

    Pod anti affinity is a group of inter pod anti affinity scheduling rules.

    Pod anti affinity is a group of inter pod anti affinity scheduling rules.

    preferredDuringSchedulingIgnoredDuringExecution

    The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.

    requiredDuringSchedulingIgnoredDuringExecution

    If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.

  215. class PodAntiAffinityFields extends AnyRef
  216. case class PodCondition(lastProbeTime: Optional[Time] = Optional.Absent, lastTransitionTime: Optional[Time] = Optional.Absent, message: Optional[String] = Optional.Absent, reason: Optional[String] = Optional.Absent, status: String, type: String) extends Product with Serializable

    PodCondition contains details for the current condition of this pod.

    PodCondition contains details for the current condition of this pod.

    message

    Human-readable message indicating details about last transition.

    reason

    Unique, one-word, CamelCase reason for the condition's last transition.

    status

    Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions

    type

    Type is the type of the condition. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions

  217. class PodConditionFields extends AnyRef
  218. case class PodDNSConfig(nameservers: Optional[Vector[String]] = Optional.Absent, options: Optional[Vector[PodDNSConfigOption]] = Optional.Absent, searches: Optional[Vector[String]] = Optional.Absent) extends Product with Serializable

    PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.

    PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.

    nameservers

    A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.

    options

    A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.

    searches

    A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.

  219. class PodDNSConfigFields extends AnyRef
  220. case class PodDNSConfigOption(name: Optional[String] = Optional.Absent, value: Optional[String] = Optional.Absent) extends Product with Serializable

    PodDNSConfigOption defines DNS resolver options of a pod.

    PodDNSConfigOption defines DNS resolver options of a pod.

    name

    Required.

  221. class PodDNSConfigOptionFields extends AnyRef
  222. class PodFields extends AnyRef
  223. case class PodIP(ip: Optional[String] = Optional.Absent) extends Product with Serializable

    IP address information for entries in the (plural) PodIPs field.

    IP address information for entries in the (plural) PodIPs field. Each entry includes: IP: An IP address allocated to the pod. Routable at least within the cluster.

    ip

    ip is an IP address (IPv4 or IPv6) assigned to the pod

  224. class PodIPFields extends AnyRef
  225. case class PodOS(name: String) extends Product with Serializable

    PodOS defines the OS parameters of a pod.

    PodOS defines the OS parameters of a pod.

    name

    Name is the name of the operating system. The currently supported values are linux and windows. Additional value may be defined in future and can be one of: https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null

  226. class PodOSFields extends AnyRef
  227. case class PodReadinessGate(conditionType: String) extends Product with Serializable

    PodReadinessGate contains the reference to a pod condition

    PodReadinessGate contains the reference to a pod condition

    conditionType

    ConditionType refers to a condition in the pod's condition list with matching type.

  228. class PodReadinessGateFields extends AnyRef
  229. case class PodSecurityContext(fsGroup: Optional[Long] = Optional.Absent, fsGroupChangePolicy: Optional[String] = Optional.Absent, runAsGroup: Optional[Long] = Optional.Absent, runAsNonRoot: Optional[Boolean] = Optional.Absent, runAsUser: Optional[Long] = Optional.Absent, seLinuxOptions: Optional[SELinuxOptions] = Optional.Absent, seccompProfile: Optional[SeccompProfile] = Optional.Absent, supplementalGroups: Optional[Vector[Long]] = Optional.Absent, sysctls: Optional[Vector[Sysctl]] = Optional.Absent, windowsOptions: Optional[WindowsSecurityContextOptions] = Optional.Absent) extends Product with Serializable

    PodSecurityContext holds pod-level security attributes and common container settings.

    PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.

    fsGroup

    A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: \1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw---- If unset, the Kubelet will not modify the ownership and permissions of any volume. Note that this field cannot be set when spec.os.name is windows.

    fsGroupChangePolicy

    fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are "OnRootMismatch" and "Always". If not specified, "Always" is used. Note that this field cannot be set when spec.os.name is windows.

    runAsGroup

    The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.

    runAsNonRoot

    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    runAsUser

    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.

    supplementalGroups

    A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container. Note that this field cannot be set when spec.os.name is windows.

    sysctls

    Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch. Note that this field cannot be set when spec.os.name is windows.

  230. class PodSecurityContextFields extends AnyRef
  231. case class PodSpec(activeDeadlineSeconds: Optional[Long] = Optional.Absent, affinity: Optional[Affinity] = Optional.Absent, automountServiceAccountToken: Optional[Boolean] = Optional.Absent, containers: Optional[Vector[Container]] = Optional.Absent, dnsConfig: Optional[PodDNSConfig] = Optional.Absent, dnsPolicy: Optional[String] = Optional.Absent, enableServiceLinks: Optional[Boolean] = Optional.Absent, ephemeralContainers: Optional[Vector[EphemeralContainer]] = Optional.Absent, hostAliases: Optional[Vector[HostAlias]] = Optional.Absent, hostIPC: Optional[Boolean] = Optional.Absent, hostNetwork: Optional[Boolean] = Optional.Absent, hostPID: Optional[Boolean] = Optional.Absent, hostname: Optional[String] = Optional.Absent, imagePullSecrets: Optional[Vector[LocalObjectReference]] = Optional.Absent, initContainers: Optional[Vector[Container]] = Optional.Absent, nodeName: Optional[String] = Optional.Absent, nodeSelector: Optional[Map[String, String]] = Optional.Absent, os: Optional[PodOS] = Optional.Absent, overhead: Optional[Map[String, Quantity]] = Optional.Absent, preemptionPolicy: Optional[String] = Optional.Absent, priority: Optional[Int] = Optional.Absent, priorityClassName: Optional[String] = Optional.Absent, readinessGates: Optional[Vector[PodReadinessGate]] = Optional.Absent, restartPolicy: Optional[String] = Optional.Absent, runtimeClassName: Optional[String] = Optional.Absent, schedulerName: Optional[String] = Optional.Absent, securityContext: Optional[PodSecurityContext] = Optional.Absent, serviceAccount: Optional[String] = Optional.Absent, serviceAccountName: Optional[String] = Optional.Absent, setHostnameAsFQDN: Optional[Boolean] = Optional.Absent, shareProcessNamespace: Optional[Boolean] = Optional.Absent, subdomain: Optional[String] = Optional.Absent, terminationGracePeriodSeconds: Optional[Long] = Optional.Absent, tolerations: Optional[Vector[Toleration]] = Optional.Absent, topologySpreadConstraints: Optional[Vector[TopologySpreadConstraint]] = Optional.Absent, volumes: Optional[Vector[Volume]] = Optional.Absent) extends Product with Serializable

    PodSpec is a description of a pod.

    PodSpec is a description of a pod.

    activeDeadlineSeconds

    Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.

    automountServiceAccountToken

    AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.

    containers

    List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.

    dnsPolicy

    Set DNS policy for the pod. Defaults to "ClusterFirst". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.

    enableServiceLinks

    EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.

    ephemeralContainers

    List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is beta-level and available on clusters that haven't disabled the EphemeralContainers feature gate.

    hostAliases

    HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.

    hostIPC

    Use the host's ipc namespace. Optional: Default to false.

    hostNetwork

    Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.

    hostPID

    Use the host's pid namespace. Optional: Default to false.

    hostname

    Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.

    imagePullSecrets

    ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod

    initContainers

    List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/

    nodeName

    NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.

    nodeSelector

    NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/

    overhead

    Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md This field is beta-level as of Kubernetes v1.18, and is only honored by servers that enable the PodOverhead feature.

    preemptionPolicy

    PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate.

    priority

    The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.

    priorityClassName

    If specified, indicates the pod's priority. "system-node-critical" and "system-cluster-critical" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.

    readinessGates

    If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to "True" More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates

    restartPolicy

    Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy

    runtimeClassName

    RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the "legacy" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class This is a beta feature as of Kubernetes v1.14.

    schedulerName

    If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.

    serviceAccount

    DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.

    serviceAccountName

    ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/

    setHostnameAsFQDN

    If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters to FQDN. If a pod does not have FQDN, this has no effect. Default to false.

    shareProcessNamespace

    Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.

    subdomain

    If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>". If not specified, the pod will not have a domainname at all.

    terminationGracePeriodSeconds

    Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.

    tolerations

    If specified, the pod's tolerations.

    topologySpreadConstraints

    TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. All topologySpreadConstraints are ANDed.

    volumes

    List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes

  232. class PodSpecFields extends AnyRef
  233. case class PodStatus(conditions: Optional[Vector[PodCondition]] = Optional.Absent, containerStatuses: Optional[Vector[ContainerStatus]] = Optional.Absent, ephemeralContainerStatuses: Optional[Vector[ContainerStatus]] = Optional.Absent, hostIP: Optional[String] = Optional.Absent, initContainerStatuses: Optional[Vector[ContainerStatus]] = Optional.Absent, message: Optional[String] = Optional.Absent, nominatedNodeName: Optional[String] = Optional.Absent, phase: Optional[String] = Optional.Absent, podIP: Optional[String] = Optional.Absent, podIPs: Optional[Vector[PodIP]] = Optional.Absent, qosClass: Optional[String] = Optional.Absent, reason: Optional[String] = Optional.Absent, startTime: Optional[Time] = Optional.Absent) extends Product with Serializable

    PodStatus represents information about the status of a pod.

    PodStatus represents information about the status of a pod. Status may trail the actual state of a system, especially if the node that hosts the pod cannot contact the control plane.

    conditions

    Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions

    containerStatuses

    The list has one entry per container in the manifest. Each entry is currently the output of docker inspect. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status

    ephemeralContainerStatuses

    Status for any ephemeral containers that have run in this pod. This field is beta-level and available on clusters that haven't disabled the EphemeralContainers feature gate.

    hostIP

    IP address of the host to which the pod is assigned. Empty if not yet scheduled.

    initContainerStatuses

    The list has one entry per init container in the manifest. The most recent successful init container will have ready = true, the most recently started container will have startTime set. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status

    message

    A human readable message indicating details about why the pod is in this condition.

    nominatedNodeName

    nominatedNodeName is set only when this pod preempts other pods on the node, but it cannot be scheduled right away as preemption victims receive their graceful termination periods. This field does not guarantee that the pod will be scheduled on this node. Scheduler may decide to place the pod elsewhere if other nodes become available sooner. Scheduler may also decide to give the resources on this node to a higher priority pod that is created after preemption. As a result, this field may be different than PodSpec.nodeName when the pod is scheduled.

    phase

    The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle. The conditions array, the reason and message fields, and the individual container status arrays contain more detail about the pod's status. There are five possible phase values: Pending: The pod has been accepted by the Kubernetes system, but one or more of the container images has not been created. This includes time before being scheduled as well as time spent downloading images over the network, which could take a while. Running: The pod has been bound to a node, and all of the containers have been created. At least one container is still running, or is in the process of starting or restarting. Succeeded: All containers in the pod have terminated in success, and will not be restarted. Failed: All containers in the pod have terminated, and at least one container has terminated in failure. The container either exited with non-zero status or was terminated by the system. Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase

    podIP

    IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.

    podIPs

    podIPs holds the IP addresses allocated to the pod. If this field is specified, the 0th entry must match the podIP field. Pods may be allocated at most 1 value for each of IPv4 and IPv6. This list is empty if no IPs have been allocated yet.

    qosClass

    The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://git.k8s.io/community/contributors/design-proposals/node/resource-qos.md

    reason

    A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted'

  234. class PodStatusFields extends AnyRef
  235. case class PodTemplate(metadata: Optional[ObjectMeta] = Optional.Absent, template: Optional[PodTemplateSpec] = Optional.Absent) extends Product with Serializable

    PodTemplate describes a template for creating copies of a predefined pod.

  236. class PodTemplateFields extends AnyRef
  237. case class PodTemplateSpec(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[PodSpec] = Optional.Absent) extends Product with Serializable

    PodTemplateSpec describes the data a pod should have when created from a template

  238. class PodTemplateSpecFields extends AnyRef
  239. case class PortStatus(error: Optional[String] = Optional.Absent, port: Int, protocol: String) extends Product with Serializable

    error

    Error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use CamelCase names \- cloud provider specific error values must have names that comply with the format foo.example.com/CamelCase.

    port

    Port is the port number of the service port of which status is recorded here

    protocol

    Protocol is the protocol of the service port of which status is recorded here The supported values are: "TCP", "UDP", "SCTP"

  240. class PortStatusFields extends AnyRef
  241. case class PortworxVolumeSource(fsType: Optional[String] = Optional.Absent, readOnly: Optional[Boolean] = Optional.Absent, volumeID: String) extends Product with Serializable

    PortworxVolumeSource represents a Portworx volume resource.

    PortworxVolumeSource represents a Portworx volume resource.

    fsType

    FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified.

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    volumeID

    VolumeID uniquely identifies a Portworx volume

  242. class PortworxVolumeSourceFields extends AnyRef
  243. case class PreferredSchedulingTerm(preference: NodeSelectorTerm, weight: Int) extends Product with Serializable

    An empty preferred scheduling term matches all objects with implicit weight 0 (i.e.

    An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).

    weight

    Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.

  244. class PreferredSchedulingTermFields extends AnyRef
  245. case class Probe(exec: Optional[ExecAction] = Optional.Absent, failureThreshold: Optional[Int] = Optional.Absent, grpc: Optional[GRPCAction] = Optional.Absent, httpGet: Optional[HTTPGetAction] = Optional.Absent, initialDelaySeconds: Optional[Int] = Optional.Absent, periodSeconds: Optional[Int] = Optional.Absent, successThreshold: Optional[Int] = Optional.Absent, tcpSocket: Optional[TCPSocketAction] = Optional.Absent, terminationGracePeriodSeconds: Optional[Long] = Optional.Absent, timeoutSeconds: Optional[Int] = Optional.Absent) extends Product with Serializable

    Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

    Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

    failureThreshold

    Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.

    initialDelaySeconds

    Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes

    periodSeconds

    How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.

    successThreshold

    Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.

    terminationGracePeriodSeconds

    Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.

    timeoutSeconds

    Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes

  246. class ProbeFields extends AnyRef
  247. case class ProjectedVolumeSource(defaultMode: Optional[Int] = Optional.Absent, sources: Optional[Vector[VolumeProjection]] = Optional.Absent) extends Product with Serializable

    Represents a projected volume source

    Represents a projected volume source

    defaultMode

    Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.

    sources

    list of volume projections

  248. class ProjectedVolumeSourceFields extends AnyRef
  249. case class QuobyteVolumeSource(group: Optional[String] = Optional.Absent, readOnly: Optional[Boolean] = Optional.Absent, registry: String, tenant: Optional[String] = Optional.Absent, user: Optional[String] = Optional.Absent, volume: String) extends Product with Serializable

    Represents a Quobyte mount that lasts the lifetime of a pod.

    Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.

    group

    Group to map volume access to Default is no group

    readOnly

    ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.

    registry

    Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes

    tenant

    Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin

    user

    User to map volume access to Defaults to serivceaccount user

    volume

    Volume is a string that references an already created Quobyte volume by name.

  250. class QuobyteVolumeSourceFields extends AnyRef
  251. case class RBDPersistentVolumeSource(fsType: Optional[String] = Optional.Absent, image: String, keyring: Optional[String] = Optional.Absent, monitors: Vector[String], pool: Optional[String] = Optional.Absent, readOnly: Optional[Boolean] = Optional.Absent, secretRef: Optional[SecretReference] = Optional.Absent, user: Optional[String] = Optional.Absent) extends Product with Serializable

    Represents a Rados Block Device mount that lasts the lifetime of a pod.

    Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.

    fsType

    Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd

    image

    The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it

    keyring

    Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it

    monitors

    A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it

    pool

    The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it

    user

    The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it

  252. class RBDPersistentVolumeSourceFields extends AnyRef
  253. case class RBDVolumeSource(fsType: Optional[String] = Optional.Absent, image: String, keyring: Optional[String] = Optional.Absent, monitors: Vector[String], pool: Optional[String] = Optional.Absent, readOnly: Optional[Boolean] = Optional.Absent, secretRef: Optional[LocalObjectReference] = Optional.Absent, user: Optional[String] = Optional.Absent) extends Product with Serializable

    Represents a Rados Block Device mount that lasts the lifetime of a pod.

    Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.

    fsType

    Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd

    image

    The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it

    keyring

    Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it

    monitors

    A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it

    pool

    The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it

    readOnly

    ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it

    user

    The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it

  254. class RBDVolumeSourceFields extends AnyRef
  255. case class ReplicationController(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[ReplicationControllerSpec] = Optional.Absent, status: Optional[ReplicationControllerStatus] = Optional.Absent) extends Product with Serializable

    ReplicationController represents the configuration of a replication controller.

  256. case class ReplicationControllerCondition(lastTransitionTime: Optional[Time] = Optional.Absent, message: Optional[String] = Optional.Absent, reason: Optional[String] = Optional.Absent, status: String, type: String) extends Product with Serializable

    ReplicationControllerCondition describes the state of a replication controller at a certain point.

    ReplicationControllerCondition describes the state of a replication controller at a certain point.

    message

    A human readable message indicating details about the transition.

    reason

    The reason for the condition's last transition.

    status

    Status of the condition, one of True, False, Unknown.

    type

    Type of replication controller condition.

  257. class ReplicationControllerConditionFields extends AnyRef
  258. class ReplicationControllerFields extends AnyRef
  259. case class ReplicationControllerSpec(minReadySeconds: Optional[Int] = Optional.Absent, replicas: Optional[Int] = Optional.Absent, selector: Optional[Map[String, String]] = Optional.Absent, template: Optional[PodTemplateSpec] = Optional.Absent) extends Product with Serializable

    ReplicationControllerSpec is the specification of a replication controller.

    ReplicationControllerSpec is the specification of a replication controller.

    minReadySeconds

    Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)

    replicas

    Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller

    selector

    Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors

  260. class ReplicationControllerSpecFields extends AnyRef
  261. case class ReplicationControllerStatus(availableReplicas: Optional[Int] = Optional.Absent, conditions: Optional[Vector[ReplicationControllerCondition]] = Optional.Absent, fullyLabeledReplicas: Optional[Int] = Optional.Absent, observedGeneration: Optional[Long] = Optional.Absent, readyReplicas: Optional[Int] = Optional.Absent, replicas: Int) extends Product with Serializable

    ReplicationControllerStatus represents the current status of a replication controller.

    ReplicationControllerStatus represents the current status of a replication controller.

    availableReplicas

    The number of available replicas (ready for at least minReadySeconds) for this replication controller.

    conditions

    Represents the latest available observations of a replication controller's current state.

    fullyLabeledReplicas

    The number of pods that have labels matching the labels of the pod template of the replication controller.

    observedGeneration

    ObservedGeneration reflects the generation of the most recently observed replication controller.

    readyReplicas

    The number of ready replicas for this replication controller.

    replicas

    Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller

  262. class ReplicationControllerStatusFields extends AnyRef
  263. case class ResourceFieldSelector(containerName: Optional[String] = Optional.Absent, divisor: Optional[Quantity] = Optional.Absent, resource: String) extends Product with Serializable

    ResourceFieldSelector represents container resources (cpu, memory) and their output format

    ResourceFieldSelector represents container resources (cpu, memory) and their output format

    containerName

    Container name: required for volumes, optional for env vars

    resource

    Required: resource to select

  264. class ResourceFieldSelectorFields extends AnyRef
  265. case class ResourceQuota(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[ResourceQuotaSpec] = Optional.Absent, status: Optional[ResourceQuotaStatus] = Optional.Absent) extends Product with Serializable

    ResourceQuota sets aggregate quota restrictions enforced per namespace

  266. class ResourceQuotaFields extends AnyRef
  267. case class ResourceQuotaSpec(hard: Optional[Map[String, Quantity]] = Optional.Absent, scopeSelector: Optional[ScopeSelector] = Optional.Absent, scopes: Optional[Vector[String]] = Optional.Absent) extends Product with Serializable

    ResourceQuotaSpec defines the desired hard limits to enforce for Quota.

    ResourceQuotaSpec defines the desired hard limits to enforce for Quota.

    hard

    hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/

    scopes

    A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.

  268. class ResourceQuotaSpecFields extends AnyRef
  269. case class ResourceQuotaStatus(hard: Optional[Map[String, Quantity]] = Optional.Absent, used: Optional[Map[String, Quantity]] = Optional.Absent) extends Product with Serializable

    ResourceQuotaStatus defines the enforced hard limits and observed use.

    ResourceQuotaStatus defines the enforced hard limits and observed use.

    hard

    Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/

    used

    Used is the current observed total usage of the resource in the namespace.

  270. class ResourceQuotaStatusFields extends AnyRef
  271. case class ResourceRequirements(limits: Optional[Map[String, Quantity]] = Optional.Absent, requests: Optional[Map[String, Quantity]] = Optional.Absent) extends Product with Serializable

    ResourceRequirements describes the compute resource requirements.

    ResourceRequirements describes the compute resource requirements.

    limits

    Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/

    requests

    Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/

  272. class ResourceRequirementsFields extends AnyRef
  273. case class SELinuxOptions(level: Optional[String] = Optional.Absent, role: Optional[String] = Optional.Absent, type: Optional[String] = Optional.Absent, user: Optional[String] = Optional.Absent) extends Product with Serializable

    SELinuxOptions are the labels to be applied to the container

    SELinuxOptions are the labels to be applied to the container

    level

    Level is SELinux level label that applies to the container.

    role

    Role is a SELinux role label that applies to the container.

    type

    Type is a SELinux type label that applies to the container.

    user

    User is a SELinux user label that applies to the container.

  274. class SELinuxOptionsFields extends AnyRef
  275. case class ScaleIOPersistentVolumeSource(fsType: Optional[String] = Optional.Absent, gateway: String, protectionDomain: Optional[String] = Optional.Absent, readOnly: Optional[Boolean] = Optional.Absent, secretRef: SecretReference, sslEnabled: Optional[Boolean] = Optional.Absent, storageMode: Optional[String] = Optional.Absent, storagePool: Optional[String] = Optional.Absent, system: String, volumeName: Optional[String] = Optional.Absent) extends Product with Serializable

    ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume

    ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume

    fsType

    Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Default is "xfs"

    gateway

    The host address of the ScaleIO API Gateway.

    protectionDomain

    The name of the ScaleIO Protection Domain for the configured storage.

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    sslEnabled

    Flag to enable/disable SSL communication with Gateway, default false

    storageMode

    Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.

    storagePool

    The ScaleIO Storage Pool associated with the protection domain.

    system

    The name of the storage system as configured in ScaleIO.

    volumeName

    The name of a volume already created in the ScaleIO system that is associated with this volume source.

  276. class ScaleIOPersistentVolumeSourceFields extends AnyRef
  277. case class ScaleIOVolumeSource(fsType: Optional[String] = Optional.Absent, gateway: String, protectionDomain: Optional[String] = Optional.Absent, readOnly: Optional[Boolean] = Optional.Absent, secretRef: LocalObjectReference, sslEnabled: Optional[Boolean] = Optional.Absent, storageMode: Optional[String] = Optional.Absent, storagePool: Optional[String] = Optional.Absent, system: String, volumeName: Optional[String] = Optional.Absent) extends Product with Serializable

    ScaleIOVolumeSource represents a persistent ScaleIO volume

    ScaleIOVolumeSource represents a persistent ScaleIO volume

    fsType

    Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Default is "xfs".

    gateway

    The host address of the ScaleIO API Gateway.

    protectionDomain

    The name of the ScaleIO Protection Domain for the configured storage.

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    sslEnabled

    Flag to enable/disable SSL communication with Gateway, default false

    storageMode

    Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.

    storagePool

    The ScaleIO Storage Pool associated with the protection domain.

    system

    The name of the storage system as configured in ScaleIO.

    volumeName

    The name of a volume already created in the ScaleIO system that is associated with this volume source.

  278. class ScaleIOVolumeSourceFields extends AnyRef
  279. case class ScopeSelector(matchExpressions: Optional[Vector[ScopedResourceSelectorRequirement]] = Optional.Absent) extends Product with Serializable

    A scope selector represents the AND of the selectors represented by the scoped-resource selector requirements.

    A scope selector represents the AND of the selectors represented by the scoped-resource selector requirements.

    matchExpressions

    A list of scope selector requirements by scope of the resources.

  280. class ScopeSelectorFields extends AnyRef
  281. case class ScopedResourceSelectorRequirement(operator: String, scopeName: String, values: Optional[Vector[String]] = Optional.Absent) extends Product with Serializable

    A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values.

    A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values.

    operator

    Represents a scope's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist.

    scopeName

    The name of the scope that the selector applies to.

    values

    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

  282. class ScopedResourceSelectorRequirementFields extends AnyRef
  283. case class SeccompProfile(localhostProfile: Optional[String] = Optional.Absent, type: String) extends Product with Serializable

    SeccompProfile defines a pod/container's seccomp profile settings.

    SeccompProfile defines a pod/container's seccomp profile settings. Only one profile source may be set.

    localhostProfile

    localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is "Localhost".

    type

    type indicates which kind of seccomp profile will be applied. Valid options are: Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.

  284. class SeccompProfileFields extends AnyRef
  285. case class Secret(data: Optional[Map[String, Chunk[Byte]]] = Optional.Absent, immutable: Optional[Boolean] = Optional.Absent, metadata: Optional[ObjectMeta] = Optional.Absent, stringData: Optional[Map[String, String]] = Optional.Absent, type: Optional[String] = Optional.Absent) extends Product with Serializable

    Secret holds secret data of a certain type.

    Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.

    data

    Data contains the secret data. Each key must consist of alphanumeric characters, '-', '_' or '.'. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4

    immutable

    Immutable, if set to true, ensures that data stored in the Secret cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil.

    stringData

    stringData allows specifying non-binary secret data in string form. It is provided as a write-only input field for convenience. All keys and values are merged into the data field on write, overwriting any existing values. The stringData field is never output when reading from the API.

    type

    Used to facilitate programmatic handling of secret data. More info: https://kubernetes.io/docs/concepts/configuration/secret/#secret-types

  286. case class SecretEnvSource(name: Optional[String] = Optional.Absent, optional: Optional[Boolean] = Optional.Absent) extends Product with Serializable

    SecretEnvSource selects a Secret to populate the environment variables with.

    SecretEnvSource selects a Secret to populate the environment variables with.

    The contents of the target Secret's Data field will represent the key-value pairs as environment variables.

    name

    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

    optional

    Specify whether the Secret must be defined

  287. class SecretEnvSourceFields extends AnyRef
  288. class SecretFields extends AnyRef
  289. case class SecretKeySelector(key: String, name: Optional[String] = Optional.Absent, optional: Optional[Boolean] = Optional.Absent) extends Product with Serializable

    SecretKeySelector selects a key of a Secret.

    SecretKeySelector selects a key of a Secret.

    key

    The key of the secret to select from. Must be a valid secret key.

    name

    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

    optional

    Specify whether the Secret or its key must be defined

  290. class SecretKeySelectorFields extends AnyRef
  291. case class SecretProjection(items: Optional[Vector[KeyToPath]] = Optional.Absent, name: Optional[String] = Optional.Absent, optional: Optional[Boolean] = Optional.Absent) extends Product with Serializable

    Adapts a secret into a projected volume.

    Adapts a secret into a projected volume.

    The contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.

    items

    If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.

    name

    Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

    optional

    Specify whether the Secret or its key must be defined

  292. class SecretProjectionFields extends AnyRef
  293. case class SecretReference(name: Optional[String] = Optional.Absent, namespace: Optional[String] = Optional.Absent) extends Product with Serializable

    SecretReference represents a Secret Reference.

    SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace

    name

    Name is unique within a namespace to reference a secret resource.

    namespace

    Namespace defines the space within which the secret name must be unique.

  294. class SecretReferenceFields extends AnyRef
  295. case class SecretVolumeSource(defaultMode: Optional[Int] = Optional.Absent, items: Optional[Vector[KeyToPath]] = Optional.Absent, optional: Optional[Boolean] = Optional.Absent, secretName: Optional[String] = Optional.Absent) extends Product with Serializable

    Adapts a Secret into a volume.

    Adapts a Secret into a volume.

    The contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.

    defaultMode

    Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.

    items

    If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.

    optional

    Specify whether the Secret or its keys must be defined

    secretName

    Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret

  296. class SecretVolumeSourceFields extends AnyRef
  297. case class SecurityContext(allowPrivilegeEscalation: Optional[Boolean] = Optional.Absent, capabilities: Optional[Capabilities] = Optional.Absent, privileged: Optional[Boolean] = Optional.Absent, procMount: Optional[String] = Optional.Absent, readOnlyRootFilesystem: Optional[Boolean] = Optional.Absent, runAsGroup: Optional[Long] = Optional.Absent, runAsNonRoot: Optional[Boolean] = Optional.Absent, runAsUser: Optional[Long] = Optional.Absent, seLinuxOptions: Optional[SELinuxOptions] = Optional.Absent, seccompProfile: Optional[SeccompProfile] = Optional.Absent, windowsOptions: Optional[WindowsSecurityContextOptions] = Optional.Absent) extends Product with Serializable

    SecurityContext holds security configuration that will be applied to a container.

    SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.

    allowPrivilegeEscalation

    AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.

    privileged

    Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.

    procMount

    procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.

    readOnlyRootFilesystem

    Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.

    runAsGroup

    The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.

    runAsNonRoot

    Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

    runAsUser

    The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.

  298. class SecurityContextFields extends AnyRef
  299. case class Service(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[ServiceSpec] = Optional.Absent, status: Optional[ServiceStatus] = Optional.Absent) extends Product with Serializable

    Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.

  300. case class ServiceAccount(automountServiceAccountToken: Optional[Boolean] = Optional.Absent, imagePullSecrets: Optional[Vector[LocalObjectReference]] = Optional.Absent, metadata: Optional[ObjectMeta] = Optional.Absent, secrets: Optional[Vector[ObjectReference]] = Optional.Absent) extends Product with Serializable

    ServiceAccount binds together: * a name, understood by users, and perhaps by peripheral systems, for an identity * a principal that can be authenticated and authorized * a set of secrets

    ServiceAccount binds together: * a name, understood by users, and perhaps by peripheral systems, for an identity * a principal that can be authenticated and authorized * a set of secrets

    automountServiceAccountToken

    AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted. Can be overridden at the pod level.

    imagePullSecrets

    ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount. ImagePullSecrets are distinct from Secrets because Secrets can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet. More info: https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod

    secrets

    Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount. More info: https://kubernetes.io/docs/concepts/configuration/secret

  301. class ServiceAccountFields extends AnyRef
  302. case class ServiceAccountTokenProjection(audience: Optional[String] = Optional.Absent, expirationSeconds: Optional[Long] = Optional.Absent, path: String) extends Product with Serializable

    ServiceAccountTokenProjection represents a projected service account token volume.

    ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).

    audience

    Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.

    expirationSeconds

    ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.

    path

    Path is the path relative to the mount point of the file to project the token into.

  303. class ServiceAccountTokenProjectionFields extends AnyRef
  304. class ServiceFields extends AnyRef
  305. case class ServicePort(appProtocol: Optional[String] = Optional.Absent, name: Optional[String] = Optional.Absent, nodePort: Optional[Int] = Optional.Absent, port: Int, protocol: Optional[String] = Optional.Absent, targetPort: Optional[IntOrString] = Optional.Absent) extends Product with Serializable

    ServicePort contains information on service's port.

    ServicePort contains information on service's port.

    appProtocol

    The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol.

    name

    The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. When considering the endpoints for a Service, this must match the 'name' field in the EndpointPort. Optional if only one ServicePort is defined on this service.

    nodePort

    The port on each node on which this service is exposed when type is NodePort or LoadBalancer. Usually assigned by the system. If a value is specified, in-range, and not in use it will be used, otherwise the operation will fail. If not specified, a port will be allocated if this Service requires one. If this field is specified when creating a Service which does not need it, creation will fail. This field will be wiped when updating a Service to no longer need it (e.g. changing type from NodePort to ClusterIP). More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport

    port

    The port that will be exposed by this service.

    protocol

    The IP protocol for this port. Supports "TCP", "UDP", and "SCTP". Default is TCP.

  306. class ServicePortFields extends AnyRef
  307. case class ServiceSpec(allocateLoadBalancerNodePorts: Optional[Boolean] = Optional.Absent, clusterIP: Optional[String] = Optional.Absent, clusterIPs: Optional[Vector[String]] = Optional.Absent, externalIPs: Optional[Vector[String]] = Optional.Absent, externalName: Optional[String] = Optional.Absent, externalTrafficPolicy: Optional[String] = Optional.Absent, healthCheckNodePort: Optional[Int] = Optional.Absent, internalTrafficPolicy: Optional[String] = Optional.Absent, ipFamilies: Optional[Vector[String]] = Optional.Absent, ipFamilyPolicy: Optional[String] = Optional.Absent, loadBalancerClass: Optional[String] = Optional.Absent, loadBalancerIP: Optional[String] = Optional.Absent, loadBalancerSourceRanges: Optional[Vector[String]] = Optional.Absent, ports: Optional[Vector[ServicePort]] = Optional.Absent, publishNotReadyAddresses: Optional[Boolean] = Optional.Absent, selector: Optional[Map[String, String]] = Optional.Absent, sessionAffinity: Optional[String] = Optional.Absent, sessionAffinityConfig: Optional[SessionAffinityConfig] = Optional.Absent, type: Optional[String] = Optional.Absent) extends Product with Serializable

    ServiceSpec describes the attributes that a user creates on a service.

    ServiceSpec describes the attributes that a user creates on a service.

    allocateLoadBalancerNodePorts

    allocateLoadBalancerNodePorts defines if NodePorts will be automatically allocated for services with type LoadBalancer. Default is "true". It may be set to "false" if the cluster load-balancer does not rely on NodePorts. If the caller requests specific NodePorts (by specifying a value), those requests will be respected, regardless of this field. This field may only be set for services with type LoadBalancer and will be cleared if the type is changed to any other type. This field is beta-level and is only honored by servers that enable the ServiceLBNodePortControl feature.

    clusterIP

    clusterIP is the IP address of the service and is usually assigned randomly. If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail. This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be blank) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above). Valid values are "None", empty string (""), or a valid IP address. Setting this to "None" makes a "headless service" (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. If this field is specified when creating a Service of type ExternalName, creation will fail. This field will be wiped when updating a Service to type ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies

    clusterIPs

    ClusterIPs is a list of IP addresses assigned to this service, and are usually assigned randomly. If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail. This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be empty) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above). Valid values are "None", empty string (""), or a valid IP address. Setting this to "None" makes a "headless service" (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. If this field is specified when creating a Service of type ExternalName, creation will fail. This field will be wiped when updating a Service to type ExternalName. If this field is not specified, it will be initialized from the clusterIP field. If this field is specified, clients must ensure that clusterIPs[0] and clusterIP have the same value. This field may hold a maximum of two entries (dual-stack IPs, in either order). These IPs must correspond to the values of the ipFamilies field. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies

    externalIPs

    externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system.

    externalName

    externalName is the external reference that discovery mechanisms will return as an alias for this service (e.g. a DNS CNAME record). No proxying will be involved. Must be a lowercase RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires type to be "ExternalName".

    externalTrafficPolicy

    externalTrafficPolicy denotes if this Service desires to route external traffic to node-local or cluster-wide endpoints. "Local" preserves the client source IP and avoids a second hop for LoadBalancer and Nodeport type services, but risks potentially imbalanced traffic spreading. "Cluster" obscures the client source IP and may cause a second hop to another node, but should have good overall load-spreading.

    healthCheckNodePort

    healthCheckNodePort specifies the healthcheck nodePort for the service. This only applies when type is set to LoadBalancer and externalTrafficPolicy is set to Local. If a value is specified, is in-range, and is not in use, it will be used. If not specified, a value will be automatically allocated. External systems (e.g. load-balancers) can use this port to determine if a given node holds endpoints for this service or not. If this field is specified when creating a Service which does not need it, creation will fail. This field will be wiped when updating a Service to no longer need it (e.g. changing type).

    internalTrafficPolicy

    InternalTrafficPolicy specifies if the cluster internal traffic should be routed to all endpoints or node-local endpoints only. "Cluster" routes internal traffic to a Service to all endpoints. "Local" routes traffic to node-local endpoints only, traffic is dropped if no node-local endpoints are ready. The default value is "Cluster".

    ipFamilies

    IPFamilies is a list of IP families (e.g. IPv4, IPv6) assigned to this service. This field is usually assigned automatically based on cluster configuration and the ipFamilyPolicy field. If this field is specified manually, the requested family is available in the cluster, and ipFamilyPolicy allows it, it will be used; otherwise creation of the service will fail. This field is conditionally mutable: it allows for adding or removing a secondary IP family, but it does not allow changing the primary IP family of the Service. Valid values are "IPv4" and "IPv6". This field only applies to Services of types ClusterIP, NodePort, and LoadBalancer, and does apply to "headless" services. This field will be wiped when updating a Service to type ExternalName. This field may hold a maximum of two entries (dual-stack families, in either order). These families must correspond to the values of the clusterIPs field, if specified. Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field.

    ipFamilyPolicy

    IPFamilyPolicy represents the dual-stack-ness requested or required by this Service. If there is no value provided, then this field will be set to SingleStack. Services can be "SingleStack" (a single IP family), "PreferDualStack" (two IP families on dual-stack configured clusters or a single IP family on single-stack clusters), or "RequireDualStack" (two IP families on dual-stack configured clusters, otherwise fail). The ipFamilies and clusterIPs fields depend on the value of this field. This field will be wiped when updating a service to type ExternalName.

    loadBalancerClass

    loadBalancerClass is the class of the load balancer implementation this Service belongs to. If specified, the value of this field must be a label-style identifier, with an optional prefix, e.g. "internal-vip" or "example.com/internal-vip". Unprefixed names are reserved for end-users. This field can only be set when the Service type is 'LoadBalancer'. If not set, the default load balancer implementation is used, today this is typically done through the cloud provider integration, but should apply for any default implementation. If set, it is assumed that a load balancer implementation is watching for Services with a matching class. Any default load balancer implementation (e.g. cloud providers) should ignore Services that set this field. This field can only be set when creating or updating a Service to type 'LoadBalancer'. Once set, it can not be changed. This field will be wiped when a service is updated to a non 'LoadBalancer' type.

    loadBalancerIP

    Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature.

    loadBalancerSourceRanges

    If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature." More info: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/

    ports

    The list of ports that are exposed by this service. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies

    publishNotReadyAddresses

    publishNotReadyAddresses indicates that any agent which deals with endpoints for this Service should disregard any indications of ready/not-ready. The primary use case for setting this field is for a StatefulSet's Headless Service to propagate SRV DNS records for its Pods for the purpose of peer discovery. The Kubernetes controllers that generate Endpoints and EndpointSlice resources for Services interpret this to mean that all endpoints are considered "ready" even if the Pods themselves are not. Agents which consume only Kubernetes generated endpoints through the Endpoints or EndpointSlice resources can safely assume this behavior.

    selector

    Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/

    sessionAffinity

    Supports "ClientIP" and "None". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies

    type

    type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. "ClusterIP" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object or EndpointSlice objects. If clusterIP is "None", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a virtual IP. "NodePort" builds on ClusterIP and allocates a port on every node which routes to the same endpoints as the clusterIP. "LoadBalancer" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the same endpoints as the clusterIP. "ExternalName" aliases this service to the specified externalName. Several other fields do not apply to ExternalName services. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types

  308. class ServiceSpecFields extends AnyRef
  309. case class ServiceStatus(conditions: Optional[Vector[Condition]] = Optional.Absent, loadBalancer: Optional[LoadBalancerStatus] = Optional.Absent) extends Product with Serializable

    ServiceStatus represents the current status of a service.

    ServiceStatus represents the current status of a service.

    conditions

    Current service state

  310. class ServiceStatusFields extends AnyRef
  311. case class SessionAffinityConfig(clientIP: Optional[ClientIPConfig] = Optional.Absent) extends Product with Serializable

    SessionAffinityConfig represents the configurations of session affinity.

  312. class SessionAffinityConfigFields extends AnyRef
  313. case class StorageOSPersistentVolumeSource(fsType: Optional[String] = Optional.Absent, readOnly: Optional[Boolean] = Optional.Absent, secretRef: Optional[ObjectReference] = Optional.Absent, volumeName: Optional[String] = Optional.Absent, volumeNamespace: Optional[String] = Optional.Absent) extends Product with Serializable

    Represents a StorageOS persistent volume resource.

    Represents a StorageOS persistent volume resource.

    fsType

    Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    volumeName

    VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.

    volumeNamespace

    VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to "default" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.

  314. class StorageOSPersistentVolumeSourceFields extends AnyRef
  315. case class StorageOSVolumeSource(fsType: Optional[String] = Optional.Absent, readOnly: Optional[Boolean] = Optional.Absent, secretRef: Optional[LocalObjectReference] = Optional.Absent, volumeName: Optional[String] = Optional.Absent, volumeNamespace: Optional[String] = Optional.Absent) extends Product with Serializable

    Represents a StorageOS persistent volume resource.

    Represents a StorageOS persistent volume resource.

    fsType

    Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.

    readOnly

    Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

    volumeName

    VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.

    volumeNamespace

    VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to "default" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.

  316. class StorageOSVolumeSourceFields extends AnyRef
  317. case class Sysctl(name: String, value: String) extends Product with Serializable

    Sysctl defines a kernel parameter to be set

    Sysctl defines a kernel parameter to be set

    name

    Name of a property to set

    value

    Value of a property to set

  318. class SysctlFields extends AnyRef
  319. case class TCPSocketAction(host: Optional[String] = Optional.Absent, port: IntOrString) extends Product with Serializable

    TCPSocketAction describes an action based on opening a socket

    TCPSocketAction describes an action based on opening a socket

    host

    Optional: Host name to connect to, defaults to the pod IP.

  320. class TCPSocketActionFields extends AnyRef
  321. case class Taint(effect: String, key: String, timeAdded: Optional[Time] = Optional.Absent, value: Optional[String] = Optional.Absent) extends Product with Serializable

    The node this Taint is attached to has the "effect" on any pod that does not tolerate the Taint.

    The node this Taint is attached to has the "effect" on any pod that does not tolerate the Taint.

    effect

    Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.

    key

    Required. The taint key to be applied to a node.

    value

    The taint value corresponding to the taint key.

  322. class TaintFields extends AnyRef
  323. case class Toleration(effect: Optional[String] = Optional.Absent, key: Optional[String] = Optional.Absent, operator: Optional[String] = Optional.Absent, tolerationSeconds: Optional[Long] = Optional.Absent, value: Optional[String] = Optional.Absent) extends Product with Serializable

    The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.

    The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.

    effect

    Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.

    key

    Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.

    operator

    Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.

    tolerationSeconds

    TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.

    value

    Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.

  324. class TolerationFields extends AnyRef
  325. case class TopologySelectorLabelRequirement(key: String, values: Vector[String]) extends Product with Serializable

    A topology selector requirement is a selector that matches given label.

    A topology selector requirement is a selector that matches given label. This is an alpha feature and may change in the future.

    key

    The label key that the selector applies to.

    values

    An array of string values. One value must match the label to be selected. Each entry in Values is ORed.

  326. class TopologySelectorLabelRequirementFields extends AnyRef
  327. case class TopologySelectorTerm(matchLabelExpressions: Optional[Vector[TopologySelectorLabelRequirement]] = Optional.Absent) extends Product with Serializable

    A topology selector term represents the result of label queries.

    A topology selector term represents the result of label queries. A null or empty topology selector term matches no objects. The requirements of them are ANDed. It provides a subset of functionality as NodeSelectorTerm. This is an alpha feature and may change in the future.

    matchLabelExpressions

    A list of topology selector requirements by labels.

  328. class TopologySelectorTermFields extends AnyRef
  329. case class TopologySpreadConstraint(labelSelector: Optional[LabelSelector] = Optional.Absent, maxSkew: Int, topologyKey: String, whenUnsatisfiable: String) extends Product with Serializable

    TopologySpreadConstraint specifies how to spread matching pods among the given topology.

    TopologySpreadConstraint specifies how to spread matching pods among the given topology.

    maxSkew

    MaxSkew describes the degree to which pods may be unevenly distributed. When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it. It's a required field. Default value is 1 and 0 is not allowed.

    topologyKey

    TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each <key, value> as a "bucket", and try to put balanced number of pods into each bucket. It's a required field.

    whenUnsatisfiable

    WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it. - ScheduleAnyway tells the scheduler to schedule the pod in any location, but giving higher precedence to topologies that would help reduce the skew. A constraint is considered "Unsatisfiable" for an incoming pod if and only if every possible node assignment for that pod would violate "MaxSkew" on some topology. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.

  330. class TopologySpreadConstraintFields extends AnyRef
  331. case class TypedLocalObjectReference(apiGroup: Optional[String] = Optional.Absent, kind: String, name: String) extends Product with Serializable

    TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.

    TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.

    apiGroup

    APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.

    kind

    Kind is the type of resource being referenced

    name

    Name is the name of resource being referenced

  332. class TypedLocalObjectReferenceFields extends AnyRef
  333. case class Volume(awsElasticBlockStore: Optional[AWSElasticBlockStoreVolumeSource] = Optional.Absent, azureDisk: Optional[AzureDiskVolumeSource] = Optional.Absent, azureFile: Optional[AzureFileVolumeSource] = Optional.Absent, cephfs: Optional[CephFSVolumeSource] = Optional.Absent, cinder: Optional[CinderVolumeSource] = Optional.Absent, configMap: Optional[ConfigMapVolumeSource] = Optional.Absent, csi: Optional[CSIVolumeSource] = Optional.Absent, downwardAPI: Optional[DownwardAPIVolumeSource] = Optional.Absent, emptyDir: Optional[EmptyDirVolumeSource] = Optional.Absent, ephemeral: Optional[EphemeralVolumeSource] = Optional.Absent, fc: Optional[FCVolumeSource] = Optional.Absent, flexVolume: Optional[FlexVolumeSource] = Optional.Absent, flocker: Optional[FlockerVolumeSource] = Optional.Absent, gcePersistentDisk: Optional[GCEPersistentDiskVolumeSource] = Optional.Absent, gitRepo: Optional[GitRepoVolumeSource] = Optional.Absent, glusterfs: Optional[GlusterfsVolumeSource] = Optional.Absent, hostPath: Optional[HostPathVolumeSource] = Optional.Absent, iscsi: Optional[ISCSIVolumeSource] = Optional.Absent, name: String, nfs: Optional[NFSVolumeSource] = Optional.Absent, persistentVolumeClaim: Optional[PersistentVolumeClaimVolumeSource] = Optional.Absent, photonPersistentDisk: Optional[PhotonPersistentDiskVolumeSource] = Optional.Absent, portworxVolume: Optional[PortworxVolumeSource] = Optional.Absent, projected: Optional[ProjectedVolumeSource] = Optional.Absent, quobyte: Optional[QuobyteVolumeSource] = Optional.Absent, rbd: Optional[RBDVolumeSource] = Optional.Absent, scaleIO: Optional[ScaleIOVolumeSource] = Optional.Absent, secret: Optional[SecretVolumeSource] = Optional.Absent, storageos: Optional[StorageOSVolumeSource] = Optional.Absent, vsphereVolume: Optional[VsphereVirtualDiskVolumeSource] = Optional.Absent) extends Product with Serializable

    Volume represents a named volume in a pod that may be accessed by any container in the pod.

    Volume represents a named volume in a pod that may be accessed by any container in the pod.

    name

    Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

  334. case class VolumeDevice(devicePath: String, name: String) extends Product with Serializable

    volumeDevice describes a mapping of a raw block device within a container.

    volumeDevice describes a mapping of a raw block device within a container.

    devicePath

    devicePath is the path inside of the container that the device will be mapped to.

    name

    name must match the name of a persistentVolumeClaim in the pod

  335. class VolumeDeviceFields extends AnyRef
  336. class VolumeFields extends AnyRef
  337. case class VolumeMount(mountPath: String, mountPropagation: Optional[String] = Optional.Absent, name: String, readOnly: Optional[Boolean] = Optional.Absent, subPath: Optional[String] = Optional.Absent, subPathExpr: Optional[String] = Optional.Absent) extends Product with Serializable

    VolumeMount describes a mounting of a Volume within a container.

    VolumeMount describes a mounting of a Volume within a container.

    mountPath

    Path within the container at which the volume should be mounted. Must not contain ':'.

    mountPropagation

    mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.

    name

    This must match the Name of a Volume.

    readOnly

    Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.

    subPath

    Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root).

    subPathExpr

    Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $$(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive.

  338. class VolumeMountFields extends AnyRef
  339. case class VolumeNodeAffinity(required: Optional[NodeSelector] = Optional.Absent) extends Product with Serializable

    VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.

  340. class VolumeNodeAffinityFields extends AnyRef
  341. case class VolumeProjection(configMap: Optional[ConfigMapProjection] = Optional.Absent, downwardAPI: Optional[DownwardAPIProjection] = Optional.Absent, secret: Optional[SecretProjection] = Optional.Absent, serviceAccountToken: Optional[ServiceAccountTokenProjection] = Optional.Absent) extends Product with Serializable

    Projection that may be projected along with other supported volume types

  342. class VolumeProjectionFields extends AnyRef
  343. case class VsphereVirtualDiskVolumeSource(fsType: Optional[String] = Optional.Absent, storagePolicyID: Optional[String] = Optional.Absent, storagePolicyName: Optional[String] = Optional.Absent, volumePath: String) extends Product with Serializable

    Represents a vSphere volume resource.

    Represents a vSphere volume resource.

    fsType

    Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.

    storagePolicyID

    Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.

    storagePolicyName

    Storage Policy Based Management (SPBM) profile name.

    volumePath

    Path that identifies vSphere volume vmdk

  344. class VsphereVirtualDiskVolumeSourceFields extends AnyRef
  345. case class WeightedPodAffinityTerm(podAffinityTerm: PodAffinityTerm, weight: Int) extends Product with Serializable

    The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)

    The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)

    weight

    weight associated with matching the corresponding podAffinityTerm, in the range 1-100.

  346. class WeightedPodAffinityTermFields extends AnyRef
  347. case class WindowsSecurityContextOptions(gmsaCredentialSpec: Optional[String] = Optional.Absent, gmsaCredentialSpecName: Optional[String] = Optional.Absent, hostProcess: Optional[Boolean] = Optional.Absent, runAsUserName: Optional[String] = Optional.Absent) extends Product with Serializable

    WindowsSecurityContextOptions contain Windows-specific options and credentials.

    WindowsSecurityContextOptions contain Windows-specific options and credentials.

    gmsaCredentialSpec

    GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.

    gmsaCredentialSpecName

    GMSACredentialSpecName is the name of the GMSA credential spec to use.

    hostProcess

    HostProcess determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the WindowsHostProcessContainers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.

    runAsUserName

    The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

  348. class WindowsSecurityContextOptionsFields extends AnyRef

Value Members

  1. object AWSElasticBlockStoreVolumeSource extends AWSElasticBlockStoreVolumeSourceFields with Serializable
  2. object Affinity extends AffinityFields with Serializable
  3. object AttachedVolume extends AttachedVolumeFields with Serializable
  4. object AzureDiskVolumeSource extends AzureDiskVolumeSourceFields with Serializable
  5. object AzureFilePersistentVolumeSource extends AzureFilePersistentVolumeSourceFields with Serializable
  6. object AzureFileVolumeSource extends AzureFileVolumeSourceFields with Serializable
  7. object Binding extends BindingFields with Serializable
  8. object CSIPersistentVolumeSource extends CSIPersistentVolumeSourceFields with Serializable
  9. object CSIVolumeSource extends CSIVolumeSourceFields with Serializable
  10. object Capabilities extends CapabilitiesFields with Serializable
  11. object CephFSPersistentVolumeSource extends CephFSPersistentVolumeSourceFields with Serializable
  12. object CephFSVolumeSource extends CephFSVolumeSourceFields with Serializable
  13. object CinderPersistentVolumeSource extends CinderPersistentVolumeSourceFields with Serializable
  14. object CinderVolumeSource extends CinderVolumeSourceFields with Serializable
  15. object ClientIPConfig extends ClientIPConfigFields with Serializable
  16. object ComponentCondition extends ComponentConditionFields with Serializable
  17. object ComponentStatus extends ComponentStatusFields with Serializable
  18. object ConfigMap extends ConfigMapFields with Serializable
  19. object ConfigMapEnvSource extends ConfigMapEnvSourceFields with Serializable
  20. object ConfigMapKeySelector extends ConfigMapKeySelectorFields with Serializable
  21. object ConfigMapNodeConfigSource extends ConfigMapNodeConfigSourceFields with Serializable
  22. object ConfigMapProjection extends ConfigMapProjectionFields with Serializable
  23. object ConfigMapVolumeSource extends ConfigMapVolumeSourceFields with Serializable
  24. object Container extends ContainerFields with Serializable
  25. object ContainerImage extends ContainerImageFields with Serializable
  26. object ContainerPort extends ContainerPortFields with Serializable
  27. object ContainerState extends ContainerStateFields with Serializable
  28. object ContainerStateRunning extends ContainerStateRunningFields with Serializable
  29. object ContainerStateTerminated extends ContainerStateTerminatedFields with Serializable
  30. object ContainerStateWaiting extends ContainerStateWaitingFields with Serializable
  31. object ContainerStatus extends ContainerStatusFields with Serializable
  32. object DaemonEndpoint extends DaemonEndpointFields with Serializable
  33. object DownwardAPIProjection extends DownwardAPIProjectionFields with Serializable
  34. object DownwardAPIVolumeFile extends DownwardAPIVolumeFileFields with Serializable
  35. object DownwardAPIVolumeSource extends DownwardAPIVolumeSourceFields with Serializable
  36. object EmptyDirVolumeSource extends EmptyDirVolumeSourceFields with Serializable
  37. object EndpointAddress extends EndpointAddressFields with Serializable
  38. object EndpointPort extends EndpointPortFields with Serializable
  39. object EndpointSubset extends EndpointSubsetFields with Serializable
  40. object Endpoints extends EndpointsFields with Serializable
  41. object EnvFromSource extends EnvFromSourceFields with Serializable
  42. object EnvVar extends EnvVarFields with Serializable
  43. object EnvVarSource extends EnvVarSourceFields with Serializable
  44. object EphemeralContainer extends EphemeralContainerFields with Serializable
  45. object EphemeralVolumeSource extends EphemeralVolumeSourceFields with Serializable
  46. object Event extends EventFields with Serializable
  47. object EventSeries extends EventSeriesFields with Serializable
  48. object EventSource extends EventSourceFields with Serializable
  49. object ExecAction extends ExecActionFields with Serializable
  50. object FCVolumeSource extends FCVolumeSourceFields with Serializable
  51. object FlexPersistentVolumeSource extends FlexPersistentVolumeSourceFields with Serializable
  52. object FlexVolumeSource extends FlexVolumeSourceFields with Serializable
  53. object FlockerVolumeSource extends FlockerVolumeSourceFields with Serializable
  54. object GCEPersistentDiskVolumeSource extends GCEPersistentDiskVolumeSourceFields with Serializable
  55. object GRPCAction extends GRPCActionFields with Serializable
  56. object GitRepoVolumeSource extends GitRepoVolumeSourceFields with Serializable
  57. object GlusterfsPersistentVolumeSource extends GlusterfsPersistentVolumeSourceFields with Serializable
  58. object GlusterfsVolumeSource extends GlusterfsVolumeSourceFields with Serializable
  59. object HTTPGetAction extends HTTPGetActionFields with Serializable
  60. object HTTPHeader extends HTTPHeaderFields with Serializable
  61. object HostAlias extends HostAliasFields with Serializable
  62. object HostPathVolumeSource extends HostPathVolumeSourceFields with Serializable
  63. object ISCSIPersistentVolumeSource extends ISCSIPersistentVolumeSourceFields with Serializable
  64. object ISCSIVolumeSource extends ISCSIVolumeSourceFields with Serializable
  65. object KeyToPath extends KeyToPathFields with Serializable
  66. object Lifecycle extends LifecycleFields with Serializable
  67. object LifecycleHandler extends LifecycleHandlerFields with Serializable
  68. object LimitRange extends LimitRangeFields with Serializable
  69. object LimitRangeItem extends LimitRangeItemFields with Serializable
  70. object LimitRangeSpec extends LimitRangeSpecFields with Serializable
  71. object LoadBalancerIngress extends LoadBalancerIngressFields with Serializable
  72. object LoadBalancerStatus extends LoadBalancerStatusFields with Serializable
  73. object LocalObjectReference extends LocalObjectReferenceFields with Serializable
  74. object LocalVolumeSource extends LocalVolumeSourceFields with Serializable
  75. object NFSVolumeSource extends NFSVolumeSourceFields with Serializable
  76. object Namespace extends NamespaceFields with Serializable
  77. object NamespaceCondition extends NamespaceConditionFields with Serializable
  78. object NamespaceSpec extends NamespaceSpecFields with Serializable
  79. object NamespaceStatus extends NamespaceStatusFields with Serializable
  80. object Node extends NodeFields with Serializable
  81. object NodeAddress extends NodeAddressFields with Serializable
  82. object NodeAffinity extends NodeAffinityFields with Serializable
  83. object NodeCondition extends NodeConditionFields with Serializable
  84. object NodeConfigSource extends NodeConfigSourceFields with Serializable
  85. object NodeConfigStatus extends NodeConfigStatusFields with Serializable
  86. object NodeDaemonEndpoints extends NodeDaemonEndpointsFields with Serializable
  87. object NodeSelector extends NodeSelectorFields with Serializable
  88. object NodeSelectorRequirement extends NodeSelectorRequirementFields with Serializable
  89. object NodeSelectorTerm extends NodeSelectorTermFields with Serializable
  90. object NodeSpec extends NodeSpecFields with Serializable
  91. object NodeStatus extends NodeStatusFields with Serializable
  92. object NodeSystemInfo extends NodeSystemInfoFields with Serializable
  93. object ObjectFieldSelector extends ObjectFieldSelectorFields with Serializable
  94. object ObjectReference extends ObjectReferenceFields with Serializable
  95. object PersistentVolume extends PersistentVolumeFields with Serializable
  96. object PersistentVolumeClaim extends PersistentVolumeClaimFields with Serializable
  97. object PersistentVolumeClaimCondition extends PersistentVolumeClaimConditionFields with Serializable
  98. object PersistentVolumeClaimSpec extends PersistentVolumeClaimSpecFields with Serializable
  99. object PersistentVolumeClaimStatus extends PersistentVolumeClaimStatusFields with Serializable
  100. object PersistentVolumeClaimTemplate extends PersistentVolumeClaimTemplateFields with Serializable
  101. object PersistentVolumeClaimVolumeSource extends PersistentVolumeClaimVolumeSourceFields with Serializable
  102. object PersistentVolumeSpec extends PersistentVolumeSpecFields with Serializable
  103. object PersistentVolumeStatus extends PersistentVolumeStatusFields with Serializable
  104. object PhotonPersistentDiskVolumeSource extends PhotonPersistentDiskVolumeSourceFields with Serializable
  105. object Pod extends PodFields with Serializable
  106. object PodAffinity extends PodAffinityFields with Serializable
  107. object PodAffinityTerm extends PodAffinityTermFields with Serializable
  108. object PodAntiAffinity extends PodAntiAffinityFields with Serializable
  109. object PodCondition extends PodConditionFields with Serializable
  110. object PodDNSConfig extends PodDNSConfigFields with Serializable
  111. object PodDNSConfigOption extends PodDNSConfigOptionFields with Serializable
  112. object PodIP extends PodIPFields with Serializable
  113. object PodOS extends PodOSFields with Serializable
  114. object PodReadinessGate extends PodReadinessGateFields with Serializable
  115. object PodSecurityContext extends PodSecurityContextFields with Serializable
  116. object PodSpec extends PodSpecFields with Serializable
  117. object PodStatus extends PodStatusFields with Serializable
  118. object PodTemplate extends PodTemplateFields with Serializable
  119. object PodTemplateSpec extends PodTemplateSpecFields with Serializable
  120. object PortStatus extends PortStatusFields with Serializable
  121. object PortworxVolumeSource extends PortworxVolumeSourceFields with Serializable
  122. object PreferredSchedulingTerm extends PreferredSchedulingTermFields with Serializable
  123. object Probe extends ProbeFields with Serializable
  124. object ProjectedVolumeSource extends ProjectedVolumeSourceFields with Serializable
  125. object QuobyteVolumeSource extends QuobyteVolumeSourceFields with Serializable
  126. object RBDPersistentVolumeSource extends RBDPersistentVolumeSourceFields with Serializable
  127. object RBDVolumeSource extends RBDVolumeSourceFields with Serializable
  128. object ReplicationController extends ReplicationControllerFields with Serializable
  129. object ReplicationControllerCondition extends ReplicationControllerConditionFields with Serializable
  130. object ReplicationControllerSpec extends ReplicationControllerSpecFields with Serializable
  131. object ReplicationControllerStatus extends ReplicationControllerStatusFields with Serializable
  132. object ResourceFieldSelector extends ResourceFieldSelectorFields with Serializable
  133. object ResourceQuota extends ResourceQuotaFields with Serializable
  134. object ResourceQuotaSpec extends ResourceQuotaSpecFields with Serializable
  135. object ResourceQuotaStatus extends ResourceQuotaStatusFields with Serializable
  136. object ResourceRequirements extends ResourceRequirementsFields with Serializable
  137. object SELinuxOptions extends SELinuxOptionsFields with Serializable
  138. object ScaleIOPersistentVolumeSource extends ScaleIOPersistentVolumeSourceFields with Serializable
  139. object ScaleIOVolumeSource extends ScaleIOVolumeSourceFields with Serializable
  140. object ScopeSelector extends ScopeSelectorFields with Serializable
  141. object ScopedResourceSelectorRequirement extends ScopedResourceSelectorRequirementFields with Serializable
  142. object SeccompProfile extends SeccompProfileFields with Serializable
  143. object Secret extends SecretFields with Serializable
  144. object SecretEnvSource extends SecretEnvSourceFields with Serializable
  145. object SecretKeySelector extends SecretKeySelectorFields with Serializable
  146. object SecretProjection extends SecretProjectionFields with Serializable
  147. object SecretReference extends SecretReferenceFields with Serializable
  148. object SecretVolumeSource extends SecretVolumeSourceFields with Serializable
  149. object SecurityContext extends SecurityContextFields with Serializable
  150. object Service extends ServiceFields with Serializable
  151. object ServiceAccount extends ServiceAccountFields with Serializable
  152. object ServiceAccountTokenProjection extends ServiceAccountTokenProjectionFields with Serializable
  153. object ServicePort extends ServicePortFields with Serializable
  154. object ServiceSpec extends ServiceSpecFields with Serializable
  155. object ServiceStatus extends ServiceStatusFields with Serializable
  156. object SessionAffinityConfig extends SessionAffinityConfigFields with Serializable
  157. object StorageOSPersistentVolumeSource extends StorageOSPersistentVolumeSourceFields with Serializable
  158. object StorageOSVolumeSource extends StorageOSVolumeSourceFields with Serializable
  159. object Sysctl extends SysctlFields with Serializable
  160. object TCPSocketAction extends TCPSocketActionFields with Serializable
  161. object Taint extends TaintFields with Serializable
  162. object Toleration extends TolerationFields with Serializable
  163. object TopologySelectorLabelRequirement extends TopologySelectorLabelRequirementFields with Serializable
  164. object TopologySelectorTerm extends TopologySelectorTermFields with Serializable
  165. object TopologySpreadConstraint extends TopologySpreadConstraintFields with Serializable
  166. object TypedLocalObjectReference extends TypedLocalObjectReferenceFields with Serializable
  167. object Volume extends VolumeFields with Serializable
  168. object VolumeDevice extends VolumeDeviceFields with Serializable
  169. object VolumeMount extends VolumeMountFields with Serializable
  170. object VolumeNodeAffinity extends VolumeNodeAffinityFields with Serializable
  171. object VolumeProjection extends VolumeProjectionFields with Serializable
  172. object VsphereVirtualDiskVolumeSource extends VsphereVirtualDiskVolumeSourceFields with Serializable
  173. object WeightedPodAffinityTerm extends WeightedPodAffinityTermFields with Serializable
  174. object WindowsSecurityContextOptions extends WindowsSecurityContextOptionsFields with Serializable

Ungrouped