Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for ReadyReplicas (0.23 sec)

  1. pkg/apis/apps/validation/validation.go

    	}
    	if status.ReadyReplicas > status.Replicas {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("readyReplicas"), status.ReadyReplicas, msg))
    	}
    	if status.AvailableReplicas > status.Replicas {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("availableReplicas"), status.AvailableReplicas, msg))
    	}
    	if status.AvailableReplicas > status.ReadyReplicas {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 06 22:11:20 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/conversion.go

    	out.Replicas = in.Replicas
    	out.FullyLabeledReplicas = in.FullyLabeledReplicas
    	out.ReadyReplicas = in.ReadyReplicas
    	out.AvailableReplicas = in.AvailableReplicas
    	out.ObservedGeneration = in.ObservedGeneration
    	for _, cond := range in.Conditions {
    		out.Conditions = append(out.Conditions, apps.ReplicaSetCondition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:30:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. common-protos/k8s.io/api/apps/v1/generated.proto

      // +optional
      optional int32 updatedReplicas = 3;
    
      // readyReplicas is the number of pods targeted by this Deployment 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
    - 34.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/generated.proto

      // +optional
      optional int32 updatedReplicas = 3;
    
      // readyReplicas is the number of pods targeted by this Deployment 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: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top