Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 140 for ReadyReplicas (0.14 sec)

  1. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	UpdatedReplicas int32 `json:"updatedReplicas,omitempty" protobuf:"varint,3,opt,name=updatedReplicas"`
    
    	// Total number of ready pods targeted by this deployment.
    	// +optional
    	ReadyReplicas int32 `json:"readyReplicas,omitempty" protobuf:"varint,7,opt,name=readyReplicas"`
    
    	// Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/deployment.go

    		statefulset.Status.Replicas == *(statefulset.Spec.Replicas) &&
    		statefulset.Status.AvailableReplicas == *(statefulset.Spec.Replicas) &&
    		statefulset.Status.ReadyReplicas == *(statefulset.Spec.Replicas) &&
    		statefulset.Status.ObservedGeneration >= statefulset.Generation
    }
    
    func deploymentComplete(deployment *appsv1.Deployment) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. pkg/controller/deployment/util/deployment_util.go

    	newStatusOldReplicas := newStatus.Replicas - newStatus.UpdatedReplicas
    
    	return (newStatus.UpdatedReplicas > oldStatus.UpdatedReplicas) ||
    		(newStatusOldReplicas < oldStatusOldReplicas) ||
    		newStatus.ReadyReplicas > deployment.Status.ReadyReplicas ||
    		newStatus.AvailableReplicas > deployment.Status.AvailableReplicas
    }
    
    // used for unit testing
    var nowFn = func() time.Time { return time.Now() }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  4. operator/pkg/helmreconciler/wait.go

    }
    
    func deploymentsReady(cs kubernetes.Interface, deployments []deployment, info map[string]string) (bool, []string) {
    	var notReady []string
    	for _, v := range deployments {
    		if v.replicaSets.Status.ReadyReplicas >= *v.deployment.Spec.Replicas {
    			// Ready
    			continue
    		}
    		id := "Deployment/" + v.deployment.Namespace + "/" + v.deployment.Name
    		notReady = append(notReady, id)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.Deployment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta2.ReplicaSet.yaml

      - lastTransitionTime: "2003-01-01T01:01:01Z"
        message: messageValue
        reason: reasonValue
        status: statusValue
        type: typeValue
      fullyLabeledReplicas: 2
      observedGeneration: 3
      readyReplicas: 4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 34.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/extensions.v1beta1.ReplicaSet.yaml

      - lastTransitionTime: "2003-01-01T01:01:01Z"
        message: messageValue
        reason: reasonValue
        status: statusValue
        type: typeValue
      fullyLabeledReplicas: 2
      observedGeneration: 3
      readyReplicas: 4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 34.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.yaml

      - lastTransitionTime: "2003-01-01T01:01:01Z"
        message: messageValue
        reason: reasonValue
        status: statusValue
        type: typeValue
      fullyLabeledReplicas: 2
      observedGeneration: 3
      readyReplicas: 4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.json

        "rollbackTo": {
          "revision": 1
        },
        "progressDeadlineSeconds": 9
      },
      "status": {
        "observedGeneration": 1,
        "replicas": 2,
        "updatedReplicas": 3,
        "readyReplicas": 7,
        "availableReplicas": 4,
        "unavailableReplicas": 5,
        "conditions": [
          {
            "type": "typeValue",
            "status": "statusValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top