Class DeploymentArgs


  • public final class DeploymentArgs
    extends com.pulumi.resources.ResourceArgs
    Deployment enables declarative updates for Pods and ReplicaSets. This resource waits until its status is ready before registering success for create/update, and populating output properties from the current state of the resource. The following conditions are used to determine whether the resource creation has succeeded or failed: 1. The Deployment has begun to be updated by the Deployment controller. If the current generation of the Deployment is > 1, then this means that the current generation must be different from the generation reported by the last outputs. 2. There exists a ReplicaSet whose revision is equal to the current revision of the Deployment. 3. The Deployment's '.status.conditions' has a status of type 'Available' whose 'status' member is set to 'True'. 4. If the Deployment has generation > 1, then '.status.conditions' has a status of type 'Progressing', whose 'status' member is set to 'True', and whose 'reason' is 'NewReplicaSetAvailable'. For generation <= 1, this status field does not exist, because it doesn't do a rollout (i.e., it simply creates the Deployment and corresponding ReplicaSet), and therefore there is no rollout to mark as 'Progressing'. If the Deployment has not reached a Ready state after 10 minutes, it will time out and mark the resource update as Failed. You can override the default timeout value by setting the 'customTimeouts' option on the resource.
    • Method Detail

      • apiVersion

        public java.util.Optional<com.pulumi.core.Output<java.lang.String>> apiVersion()
        Returns:
        APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
      • kind

        public java.util.Optional<com.pulumi.core.Output<java.lang.String>> kind()
        Returns:
        Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
      • metadata

        public java.util.Optional<com.pulumi.core.Output<ObjectMetaArgs>> metadata()
        Returns:
        Standard object metadata.
      • spec

        public java.util.Optional<com.pulumi.core.Output<DeploymentSpecArgs>> spec()
        Returns:
        Specification of the desired behavior of the Deployment.
      • status

        public java.util.Optional<com.pulumi.core.Output<DeploymentStatusArgs>> status()
        Returns:
        Most recently observed status of the Deployment.