Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for fullyLabeledReplicas (0.38 sec)

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

    				return fmt.Errorf("proto: wrong wireType = %d for field FullyLabeledReplicas", wireType)
    			}
    			m.FullyLabeledReplicas = 0
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				m.FullyLabeledReplicas |= int32(b&0x7F) << shift
    				if b < 0x80 {
    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

    	msg := "cannot be greater than status.replicas"
    	if status.FullyLabeledReplicas > status.Replicas {
    		allErrs = append(allErrs, field.Invalid(statusPath.Child("fullyLabeledReplicas"), status.FullyLabeledReplicas, msg))
    	}
    	if status.ReadyReplicas > status.Replicas {
    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. 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// The number of pods that have labels matching the labels of the pod template of the replication controller.
    	// +optional
    	FullyLabeledReplicas int32 `json:"fullyLabeledReplicas,omitempty" protobuf:"varint,2,opt,name=fullyLabeledReplicas"`
    
    	// The number of ready replicas 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)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      optional int32 replicas = 1;
    
      // The number of pods that have labels matching the labels of the pod template of the replication controller.
      // +optional
      optional int32 fullyLabeledReplicas = 2;
    
      // The number of ready replicas for this replication controller.
      // +optional
      optional int32 readyReplicas = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	// Replicas is the number of actual replicas.
    	Replicas int32
    
    	// The number of pods that have labels matching the labels of the pod template of the replication controller.
    	// +optional
    	FullyLabeledReplicas int32
    
    	// The number of ready replicas for this replication controller.
    	// +optional
    	ReadyReplicas 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)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"replicas":             "Replicas is the most recently observed number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller",
    	"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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      optional int32 replicas = 1;
    
      // The number of pods that have labels matching the labels of the pod template of the replication controller.
      // +optional
      optional int32 fullyLabeledReplicas = 2;
    
      // The number of ready replicas for this replication controller.
      // +optional
      optional int32 readyReplicas = 4;
    
    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