Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 146 for AvailableReplicas (0.19 sec)

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

    				return fmt.Errorf("proto: wrong wireType = %d for field AvailableReplicas", wireType)
    			}
    			m.AvailableReplicas = 0
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				m.AvailableReplicas |= 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
    - 169.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
    	// +optional
    	AvailableReplicas int32 `json:"availableReplicas,omitempty" protobuf:"varint,4,opt,name=availableReplicas"`
    
    	// Total number of unavailable pods targeted by this deployment. This is the total number of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    	"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)
  4. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"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)
  5. pkg/test/framework/components/echo/kube/deployment.go

    func statefulsetComplete(statefulset *appsv1.StatefulSet) bool {
    	return statefulset.Status.UpdatedReplicas == *(statefulset.Spec.Replicas) &&
    		statefulset.Status.Replicas == *(statefulset.Spec.Replicas) &&
    		statefulset.Status.AvailableReplicas == *(statefulset.Spec.Replicas) &&
    		statefulset.Status.ReadyReplicas == *(statefulset.Spec.Replicas) &&
    		statefulset.Status.ObservedGeneration >= statefulset.Generation
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/apps/v1/generated.proto

      // +optional
      optional int32 readyReplicas = 7;
    
      // Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
      // +optional
      optional int32 availableReplicas = 4;
    
      // Total number of unavailable pods targeted by this deployment. This is the total number of
      // pods that are still required for the deployment to have 100% available capacity. They may
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  7. pkg/apis/apps/types.go

    	Conditions []StatefulSetCondition
    
    	// Total number of available pods (ready for at least minReadySeconds) targeted by this statefulset.
    	// +optional
    	AvailableReplicas int32
    }
    
    // StatefulSetConditionType describes the condition types of StatefulSets.
    type StatefulSetConditionType string
    
    // TODO: Add valid condition types for Statefulsets.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/generated.proto

      // +optional
      optional int32 readyReplicas = 7;
    
      // Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
      // +optional
      optional int32 availableReplicas = 4;
    
      // Total number of unavailable pods targeted by this deployment. This is the total number of
      // pods that are still required for the deployment to have 100% available capacity. They may
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // +optional
      optional int32 readyReplicas = 7;
    
      // Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
      // +optional
      optional int32 availableReplicas = 4;
    
      // Total number of unavailable pods targeted by this deployment. This is the total number of
      // pods that are still required for the deployment to have 100% available capacity. They may
    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 readyReplicas = 7;
    
      // Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.
      // +optional
      optional int32 availableReplicas = 4;
    
      // Total number of unavailable pods targeted by this deployment. This is the total number of
      // pods that are still required for the deployment to have 100% available capacity. They may
    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