Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 140 for ReadyReplicas (0.29 sec)

  1. staging/src/k8s.io/api/apps/v1beta2/types.go

    	Replicas int32 `json:"replicas" protobuf:"varint,2,opt,name=replicas"`
    
    	// readyReplicas is the number of pods created by this StatefulSet controller with a Ready Condition.
    	ReadyReplicas int32 `json:"readyReplicas,omitempty" protobuf:"varint,3,opt,name=readyReplicas"`
    
    	// currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set_control.go

    	status.Replicas = 0
    	status.ReadyReplicas = 0
    	status.AvailableReplicas = 0
    	status.CurrentReplicas = 0
    	status.UpdatedReplicas = 0
    	for _, list := range podLists {
    		replicaStatus := computeReplicaStatus(list, minReadySeconds, currentRevision, updateRevision)
    		status.Replicas += replicaStatus.replicas
    		status.ReadyReplicas += replicaStatus.readyReplicas
    		status.AvailableReplicas += replicaStatus.availableReplicas
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. pkg/apis/apps/v1beta1/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
    	out.Conditions = *(*[]apps.DeploymentCondition)(unsafe.Pointer(&in.Conditions))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 52.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    	"updatedReplicas":     "Total number of non-terminated pods targeted by this deployment that have the desired template spec.",
    	"readyReplicas":       "readyReplicas is the number of pods targeted by this Deployment controller with a Ready Condition.",
    	"availableReplicas":   "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // +optional
      optional int32 updatedReplicas = 3;
    
      // readyReplicas is the number of pods targeted by this Deployment controller with a Ready Condition.
      // +optional
      optional int32 readyReplicas = 7;
    
      // Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"updatedReplicas":     "Total number of non-terminated pods targeted by this deployment that have the desired template spec.",
    	"readyReplicas":       "readyReplicas is the number of pods targeted by this Deployment with a Ready Condition.",
    	"availableReplicas":   "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_control_test.go

    	if err != nil {
    		t.Fatalf("Error getting updated StatefulSet: %v", err)
    	}
    	if set.Status.Replicas != 3 {
    		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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers.go

    		Object: runtime.RawExtension{Object: obj},
    	}
    
    	desiredReplicas := obj.Spec.Replicas
    	currentReplicas := obj.Status.Replicas
    	readyReplicas := obj.Status.ReadyReplicas
    
    	row.Cells = append(row.Cells, obj.Name, int64(desiredReplicas), int64(currentReplicas), int64(readyReplicas), translateTimestampSince(obj.CreationTimestamp))
    	if options.Wide {
    		names, images := layoutContainerCells(obj.Spec.Template.Spec.Containers)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // +optional
      optional int32 updatedReplicas = 3;
    
      // readyReplicas is the number of pods targeted by this Deployment controller with a Ready Condition.
      // +optional
      optional int32 readyReplicas = 7;
    
      // Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
      // +optional
    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

      // +optional
      optional int32 updatedReplicas = 3;
    
      // readyReplicas is the number of pods targeted by this Deployment controller with a Ready Condition.
      // +optional
      optional int32 readyReplicas = 7;
    
      // 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: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
Back to top