Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for ReadyReplicas (0.2 sec)

  1. staging/src/k8s.io/api/extensions/v1beta1/generated.pb.go

    				return fmt.Errorf("proto: wrong wireType = %d for field ReadyReplicas", wireType)
    			}
    			m.ReadyReplicas = 0
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				m.ReadyReplicas |= int32(b&0x7F) << shift
    				if b < 0x80 {
    					break
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 293.3K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    	}
    	if status.ReadyReplicas > status.Replicas {
    		allErrs = append(allErrs, field.Invalid(statusPath.Child("readyReplicas"), status.ReadyReplicas, msg))
    	}
    	if status.AvailableReplicas > status.Replicas {
    		allErrs = append(allErrs, field.Invalid(statusPath.Child("availableReplicas"), status.AvailableReplicas, msg))
    	}
    	if status.AvailableReplicas > status.ReadyReplicas {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.7.md

    #### Application Deployment
    * StatefulSetStatus now tracks replicas, readyReplicas, currentReplicas, and updatedReplicas. The semantics of replicas is now consistent with DaemonSet and ReplicaSet, and readyReplicas has the semantics that replicas did prior to 1.7 ([#46669](https://github.com/kubernetes/kubernetes/pull/46669), [@kow3ns](https://github.com/kow3ns)).
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/zz_generated.conversion.go

    	out.Replicas = in.Replicas
    	out.FullyLabeledReplicas = in.FullyLabeledReplicas
    	out.ReadyReplicas = in.ReadyReplicas
    	out.AvailableReplicas = in.AvailableReplicas
    	out.ObservedGeneration = in.ObservedGeneration
    	out.Conditions = *(*[]core.ReplicationControllerCondition)(unsafe.Pointer(&in.Conditions))
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// The number of ready replicas for this replication controller.
    	// +optional
    	ReadyReplicas int32 `json:"readyReplicas,omitempty" protobuf:"varint,4,opt,name=readyReplicas"`
    
    	// The number of available replicas (ready for at least minReadySeconds) for this replication controller.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.8.md

        * replicas, readyReplicas, currentReplicas, and updatedReplicas. The semantics of replicas is now consistent with DaemonSet and ReplicaSet, and readyReplicas has the semantics that replicas did prior to this release.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional int32 fullyLabeledReplicas = 2;
    
      // The number of ready replicas for this replication controller.
      // +optional
      optional int32 readyReplicas = 4;
    
      // The number of available replicas (ready for at least minReadySeconds) for this replication controller.
      // +optional
      optional int32 availableReplicas = 5;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	// +optional
    	FullyLabeledReplicas int32
    
    	// The number of ready replicas for this replication controller.
    	// +optional
    	ReadyReplicas int32
    
    	// The number of available replicas (ready for at least minReadySeconds) for this replication controller.
    	// +optional
    	AvailableReplicas int32
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"fullyLabeledReplicas": "The number of pods that have labels matching the labels of the pod template of the replication controller.",
    	"readyReplicas":        "The number of ready replicas for this replication controller.",
    	"availableReplicas":    "The number of available replicas (ready for at least minReadySeconds) for this replication controller.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional int32 fullyLabeledReplicas = 2;
    
      // The number of ready replicas for this replication controller.
      // +optional
      optional int32 readyReplicas = 4;
    
      // The number of available replicas (ready for at least minReadySeconds) for this replication controller.
      // +optional
      optional int32 availableReplicas = 5;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top