Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for DeploymentStatus (0.33 sec)

  1. pkg/controller/deployment/sync.go

    			createdRS = rs
    			err = nil
    			break
    		}
    
    		// Matching ReplicaSet is not equal - increment the collisionCount in the DeploymentStatus
    		// and requeue the Deployment.
    		if d.Status.CollisionCount == nil {
    			d.Status.CollisionCount = new(int32)
    		}
    		preCollisionCount := *d.Status.CollisionCount
    		*d.Status.CollisionCount++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // not be estimated during the time a deployment is paused. Defaults to 600s.
      // +optional
      optional int32 progressDeadlineSeconds = 9;
    }
    
    // DeploymentStatus is the most recently observed status of the Deployment.
    message DeploymentStatus {
      // observedGeneration is the generation observed by the deployment controller.
      // +optional
      optional int64 observedGeneration = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta1/generated.proto

      // not be estimated during the time a deployment is paused. Defaults to 600s.
      // +optional
      optional int32 progressDeadlineSeconds = 9;
    }
    
    // DeploymentStatus is the most recently observed status of the Deployment.
    message DeploymentStatus {
      // observedGeneration is the generation observed by the deployment controller.
      // +optional
      optional int64 observedGeneration = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta1/types.go

    	// +optional
    	MaxSurge *intstr.IntOrString `json:"maxSurge,omitempty" protobuf:"bytes,2,opt,name=maxSurge"`
    }
    
    // DeploymentStatus is the most recently observed status of the Deployment.
    type DeploymentStatus struct {
    	// observedGeneration is the generation observed by the deployment controller.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/apps/v1/generated.proto

      // not be estimated during the time a deployment is paused. Defaults to 600s.
      optional int32 progressDeadlineSeconds = 9;
    }
    
    // DeploymentStatus is the most recently observed status of the Deployment.
    message DeploymentStatus {
      // The generation observed by the deployment controller.
      // +optional
      optional int64 observedGeneration = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. pkg/apis/apps/types.go

    	// at any time during the update is at most 130% of original pods.
    	// +optional
    	MaxSurge intstr.IntOrString
    }
    
    // DeploymentStatus holds information about the observed status of a deployment.
    type DeploymentStatus struct {
    	// The generation observed by the deployment controller.
    	// +optional
    	ObservedGeneration int64
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/generated.proto

      // not be estimated during the time a deployment is paused. Defaults to 600s.
      optional int32 progressDeadlineSeconds = 9;
    }
    
    // DeploymentStatus is the most recently observed status of the Deployment.
    message DeploymentStatus {
      // The generation observed by the deployment controller.
      // +optional
      optional int64 observedGeneration = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    }
    
    func (DeploymentSpec) SwaggerDoc() map[string]string {
    	return map_DeploymentSpec
    }
    
    var map_DeploymentStatus = map[string]string{
    	"":                    "DeploymentStatus is the most recently observed status of the Deployment.",
    	"observedGeneration":  "observedGeneration is the generation observed by the deployment controller.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // not be estimated during the time a deployment is paused. Defaults to 600s.
      optional int32 progressDeadlineSeconds = 9;
    }
    
    // DeploymentStatus is the most recently observed status of the Deployment.
    message DeploymentStatus {
      // The generation observed by the deployment controller.
      // +optional
      optional int64 observedGeneration = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta2/generated.proto

      // not be estimated during the time a deployment is paused. Defaults to 600s.
      optional int32 progressDeadlineSeconds = 9;
    }
    
    // DeploymentStatus is the most recently observed status of the Deployment.
    message DeploymentStatus {
      // The generation observed by the deployment controller.
      // +optional
      optional int64 observedGeneration = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
Back to top