Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 102 for updatedReplicas (0.15 sec)

  1. pkg/kube/inject/testdata/inject/deploymentconfig-with-canonical-service-label.yaml.injected

            kind: ImageStreamTag
            name: hello-go-gke:1.0
        type: ImageChange
    status:
      availableReplicas: 0
      latestVersion: 0
      observedGeneration: 0
      replicas: 0
      unavailableReplicas: 0
      updatedReplicas: 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/deploymentconfig.yaml.injected

            kind: ImageStreamTag
            name: hello-go-gke:1.0
        type: ImageChange
    status:
      availableReplicas: 0
      latestVersion: 0
      observedGeneration: 0
      replicas: 0
      unavailableReplicas: 0
      updatedReplicas: 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/deployment.go

    				}
    			} else {
    				dep, err := appsv1Client.Deployments(d.cfg.Namespace.Name()).Get(context.TODO(), deploymentName, metav1.GetOptions{})
    				if err != nil {
    					return err
    				}
    				if dep.Spec.Replicas == nil || !deploymentComplete(dep) {
    					return fmt.Errorf("rollout is not yet done (updated replicas: %v)", dep.Status.UpdatedReplicas)
    				}
    			}
    			return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/deploymentconfig-multi.yaml.injected

              name: hello-go-gke:1.0
          type: ImageChange
      status:
        availableReplicas: 0
        latestVersion: 0
        observedGeneration: 0
        replicas: 0
        unavailableReplicas: 0
        updatedReplicas: 0
    kind: List
    metadata: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_utils.go

    // is set to the empty string. status's currentReplicas is set to updateReplicas and its updateReplicas
    // are set to 0.
    func completeRollingUpdate(set *apps.StatefulSet, status *apps.StatefulSetStatus) {
    	if set.Spec.UpdateStrategy.Type == apps.RollingUpdateStatefulSetStrategyType &&
    		status.UpdatedReplicas == *set.Spec.Replicas &&
    		status.ReadyReplicas == *set.Spec.Replicas &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_control_test.go

    		t.Error("Failed to scale statefulset to 3 replicas")
    	}
    	if set.Status.ReadyReplicas != 3 {
    		t.Error("Failed to set ReadyReplicas correctly")
    	}
    	if set.Status.UpdatedReplicas != 3 {
    		t.Error("Failed to set UpdatedReplicas correctly")
    	}
    	// Check all pods have correct pod index label.
    	if utilfeature.DefaultFeatureGate.Enabled(features.PodIndexLabel) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  7. pkg/apis/apps/v1/zz_generated.conversion.go

    	out.ObservedGeneration = in.ObservedGeneration
    	out.Replicas = in.Replicas
    	out.UpdatedReplicas = in.UpdatedReplicas
    	out.ReadyReplicas = in.ReadyReplicas
    	out.AvailableReplicas = in.AvailableReplicas
    	out.UnavailableReplicas = in.UnavailableReplicas
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 66.7K bytes
    - Viewed (0)
  8. pkg/apis/apps/v1beta2/zz_generated.conversion.go

    	out.ObservedGeneration = in.ObservedGeneration
    	out.Replicas = in.Replicas
    	out.UpdatedReplicas = in.UpdatedReplicas
    	out.ReadyReplicas = in.ReadyReplicas
    	out.AvailableReplicas = in.AvailableReplicas
    	out.UnavailableReplicas = in.UnavailableReplicas
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 74.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/types.go

    	CurrentReplicas int32 `json:"currentReplicas,omitempty" protobuf:"varint,4,opt,name=currentReplicas"`
    
    	// updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
    	// indicated by updateRevision.
    	UpdatedReplicas int32 `json:"updatedReplicas,omitempty" protobuf:"varint,5,opt,name=updatedReplicas"`
    
    	// currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta2/types.go

    	CurrentReplicas int32 `json:"currentReplicas,omitempty" protobuf:"varint,4,opt,name=currentReplicas"`
    
    	// updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
    	// indicated by updateRevision.
    	UpdatedReplicas int32 `json:"updatedReplicas,omitempty" protobuf:"varint,5,opt,name=updatedReplicas"`
    
    	// currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
Back to top