io.k8s.api.apps.v1

Type members

Classlikes

final case class ControllerRevision(revision: Int, data: Option[RawExtension], metadata: Option[ObjectMeta]) extends KObject

ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.

ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.

Source:
ControllerRevision.scala
final case class ControllerRevisionList(items: Seq[ControllerRevision], metadata: Option[ListMeta]) extends KObject

ControllerRevisionList is a resource containing a list of ControllerRevision objects.

ControllerRevisionList is a resource containing a list of ControllerRevision objects.

Source:
ControllerRevisionList.scala
final case class DaemonSet(status: Option[DaemonSetStatus], spec: Option[DaemonSetSpec], metadata: Option[ObjectMeta]) extends KObject

DaemonSet represents the configuration of a daemon set.

DaemonSet represents the configuration of a daemon set.

Source:
DaemonSet.scala
final case class DaemonSetCondition(status: String, `type`: String, reason: Option[String], lastTransitionTime: Option[Time], message: Option[String])

DaemonSetCondition describes the state of a DaemonSet at a certain point.

DaemonSetCondition describes the state of a DaemonSet at a certain point.

Source:
DaemonSetCondition.scala
final case class DaemonSetList(items: Seq[DaemonSet], metadata: Option[ListMeta]) extends KObject

DaemonSetList is a collection of daemon sets.

DaemonSetList is a collection of daemon sets.

Source:
DaemonSetList.scala
final case class DaemonSetSpec(template: PodTemplateSpec, selector: LabelSelector, minReadySeconds: Option[Int], revisionHistoryLimit: Option[Int], updateStrategy: Option[DaemonSetUpdateStrategy])

DaemonSetSpec is the specification of a daemon set.

DaemonSetSpec is the specification of a daemon set.

Source:
DaemonSetSpec.scala
final case class DaemonSetStatus(numberMisscheduled: Int, currentNumberScheduled: Int, desiredNumberScheduled: Int, numberReady: Int, conditions: Option[Seq[DaemonSetCondition]], updatedNumberScheduled: Option[Int], collisionCount: Option[Int], numberUnavailable: Option[Int], observedGeneration: Option[Int], numberAvailable: Option[Int])

DaemonSetStatus represents the current status of a daemon set.

DaemonSetStatus represents the current status of a daemon set.

Source:
DaemonSetStatus.scala
final case class DaemonSetUpdateStrategy(rollingUpdate: Option[RollingUpdateDaemonSet], `type`: Option[String])

DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.

DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.

Source:
DaemonSetUpdateStrategy.scala
final case class Deployment(status: Option[DeploymentStatus], spec: Option[DeploymentSpec], metadata: Option[ObjectMeta]) extends KObject

Deployment enables declarative updates for Pods and ReplicaSets.

Deployment enables declarative updates for Pods and ReplicaSets.

Source:
Deployment.scala
final case class DeploymentCondition(status: String, `type`: String, lastUpdateTime: Option[Time], reason: Option[String], lastTransitionTime: Option[Time], message: Option[String])

DeploymentCondition describes the state of a deployment at a certain point.

DeploymentCondition describes the state of a deployment at a certain point.

Source:
DeploymentCondition.scala
final case class DeploymentList(items: Seq[Deployment], metadata: Option[ListMeta]) extends KObject

DeploymentList is a list of Deployments.

DeploymentList is a list of Deployments.

Source:
DeploymentList.scala
final case class DeploymentSpec(template: PodTemplateSpec, selector: LabelSelector, minReadySeconds: Option[Int], progressDeadlineSeconds: Option[Int], replicas: Option[Int], revisionHistoryLimit: Option[Int], paused: Option[Boolean], strategy: Option[DeploymentStrategy])

DeploymentSpec is the specification of the desired behavior of the Deployment.

DeploymentSpec is the specification of the desired behavior of the Deployment.

Source:
DeploymentSpec.scala
final case class DeploymentStatus(conditions: Option[Seq[DeploymentCondition]], collisionCount: Option[Int], replicas: Option[Int], availableReplicas: Option[Int], unavailableReplicas: Option[Int], observedGeneration: Option[Int], updatedReplicas: Option[Int], readyReplicas: Option[Int])

DeploymentStatus is the most recently observed status of the Deployment.

DeploymentStatus is the most recently observed status of the Deployment.

Source:
DeploymentStatus.scala
final case class DeploymentStrategy(rollingUpdate: Option[RollingUpdateDeployment], `type`: Option[String])

DeploymentStrategy describes how to replace existing pods with new ones.

DeploymentStrategy describes how to replace existing pods with new ones.

Source:
DeploymentStrategy.scala
final case class ReplicaSet(status: Option[ReplicaSetStatus], spec: Option[ReplicaSetSpec], metadata: Option[ObjectMeta]) extends KObject

ReplicaSet ensures that a specified number of pod replicas are running at any given time.

ReplicaSet ensures that a specified number of pod replicas are running at any given time.

Source:
ReplicaSet.scala
final case class ReplicaSetCondition(status: String, `type`: String, reason: Option[String], lastTransitionTime: Option[Time], message: Option[String])

ReplicaSetCondition describes the state of a replica set at a certain point.

ReplicaSetCondition describes the state of a replica set at a certain point.

Source:
ReplicaSetCondition.scala
final case class ReplicaSetList(items: Seq[ReplicaSet], metadata: Option[ListMeta]) extends KObject

ReplicaSetList is a collection of ReplicaSets.

ReplicaSetList is a collection of ReplicaSets.

Source:
ReplicaSetList.scala
final case class ReplicaSetSpec(selector: LabelSelector, minReadySeconds: Option[Int], replicas: Option[Int], template: Option[PodTemplateSpec])

ReplicaSetSpec is the specification of a ReplicaSet.

ReplicaSetSpec is the specification of a ReplicaSet.

Source:
ReplicaSetSpec.scala
final case class ReplicaSetStatus(replicas: Int, conditions: Option[Seq[ReplicaSetCondition]], availableReplicas: Option[Int], observedGeneration: Option[Int], readyReplicas: Option[Int], fullyLabeledReplicas: Option[Int])

ReplicaSetStatus represents the current status of a ReplicaSet.

ReplicaSetStatus represents the current status of a ReplicaSet.

Source:
ReplicaSetStatus.scala
final case class RollingUpdateDaemonSet(maxSurge: Option[IntOrString], maxUnavailable: Option[IntOrString])

Spec to control the desired behavior of daemon set rolling update.

Spec to control the desired behavior of daemon set rolling update.

Source:
RollingUpdateDaemonSet.scala
final case class RollingUpdateDeployment(maxSurge: Option[IntOrString], maxUnavailable: Option[IntOrString])

Spec to control the desired behavior of rolling update.

Spec to control the desired behavior of rolling update.

Source:
RollingUpdateDeployment.scala
final case class RollingUpdateStatefulSetStrategy(maxUnavailable: Option[IntOrString], partition: Option[Int])

RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.

RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.

Source:
RollingUpdateStatefulSetStrategy.scala
final case class StatefulSet(status: Option[StatefulSetStatus], spec: Option[StatefulSetSpec], metadata: Option[ObjectMeta]) extends KObject

StatefulSet represents a set of pods with consistent identities. Identities are defined as:

StatefulSet represents a set of pods with consistent identities. Identities are defined as:

  • Network: A single stable DNS and hostname.
  • Storage: As many VolumeClaims as requested.

The StatefulSet guarantees that a given network identity will always map to the same storage identity.

Source:
StatefulSet.scala
final case class StatefulSetCondition(status: String, `type`: String, reason: Option[String], lastTransitionTime: Option[Time], message: Option[String])

StatefulSetCondition describes the state of a statefulset at a certain point.

StatefulSetCondition describes the state of a statefulset at a certain point.

Source:
StatefulSetCondition.scala
final case class StatefulSetList(items: Seq[StatefulSet], metadata: Option[ListMeta]) extends KObject

StatefulSetList is a collection of StatefulSets.

StatefulSetList is a collection of StatefulSets.

Source:
StatefulSetList.scala
final case class StatefulSetPersistentVolumeClaimRetentionPolicy(whenDeleted: Option[String], whenScaled: Option[String])

StatefulSetPersistentVolumeClaimRetentionPolicy describes the policy used for PVCs created from the StatefulSet VolumeClaimTemplates.

StatefulSetPersistentVolumeClaimRetentionPolicy describes the policy used for PVCs created from the StatefulSet VolumeClaimTemplates.

Source:
StatefulSetPersistentVolumeClaimRetentionPolicy.scala
final case class StatefulSetSpec(serviceName: String, template: PodTemplateSpec, selector: LabelSelector, minReadySeconds: Option[Int], replicas: Option[Int], revisionHistoryLimit: Option[Int], podManagementPolicy: Option[String], volumeClaimTemplates: Option[Seq[PersistentVolumeClaim]], persistentVolumeClaimRetentionPolicy: Option[StatefulSetPersistentVolumeClaimRetentionPolicy], updateStrategy: Option[StatefulSetUpdateStrategy])

A StatefulSetSpec is the specification of a StatefulSet.

A StatefulSetSpec is the specification of a StatefulSet.

Source:
StatefulSetSpec.scala
final case class StatefulSetStatus(replicas: Int, conditions: Option[Seq[StatefulSetCondition]], collisionCount: Option[Int], availableReplicas: Option[Int], observedGeneration: Option[Int], currentRevision: Option[String], currentReplicas: Option[Int], updateRevision: Option[String], updatedReplicas: Option[Int], readyReplicas: Option[Int])

StatefulSetStatus represents the current state of a StatefulSet.

StatefulSetStatus represents the current state of a StatefulSet.

Source:
StatefulSetStatus.scala

StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.

StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.

Source:
StatefulSetUpdateStrategy.scala