Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for currentRevision (0.23 sec)

  1. pkg/controller/statefulset/stateful_set_control.go

    		return currentRevision, updateRevision, currentStatus, err
    	case err != nil:
    		return currentRevision, updateRevision, currentStatus, err
    	case statusErr != nil:
    		return currentRevision, updateRevision, currentStatus, statusErr
    	}
    
    	logger.V(4).Info("StatefulSet revisions", "statefulSet", klog.KObj(set),
    		"currentRevision", currentStatus.CurrentRevision,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/statefulsetstatus.go

    	CurrentReplicas    *int32                                   `json:"currentReplicas,omitempty"`
    	UpdatedReplicas    *int32                                   `json:"updatedReplicas,omitempty"`
    	CurrentRevision    *string                                  `json:"currentRevision,omitempty"`
    	UpdateRevision     *string                                  `json:"updateRevision,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 25 23:59:58 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/statefulsetstatus.go

    	CurrentReplicas    *int32                                   `json:"currentReplicas,omitempty"`
    	UpdatedReplicas    *int32                                   `json:"updatedReplicas,omitempty"`
    	CurrentRevision    *string                                  `json:"currentRevision,omitempty"`
    	UpdateRevision     *string                                  `json:"updateRevision,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 25 23:59:58 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta1/statefulsetstatus.go

    	CurrentReplicas    *int32                                   `json:"currentReplicas,omitempty"`
    	UpdatedReplicas    *int32                                   `json:"updatedReplicas,omitempty"`
    	CurrentRevision    *string                                  `json:"currentRevision,omitempty"`
    	UpdateRevision     *string                                  `json:"updateRevision,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 25 23:59:58 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/errors.go

    func NewTooLargeResourceVersionError(minimumResourceVersion, currentRevision uint64, retrySeconds int) error {
    	err := apierrors.NewTimeoutError(fmt.Sprintf("Too large resource version: %d, current: %d", minimumResourceVersion, currentRevision), retrySeconds)
    	err.ErrStatus.Details.Causes = []metav1.StatusCause{
    		{
    			Type:    metav1.CauseTypeResourceVersionTooLarge,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:39:10 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_utils.go

    		status.UpdatedReplicas != set.Status.UpdatedReplicas ||
    		status.CurrentRevision != set.Status.CurrentRevision ||
    		status.AvailableReplicas != set.Status.AvailableReplicas ||
    		status.UpdateRevision != set.Status.UpdateRevision
    }
    
    // completeRollingUpdate completes a rolling update when all of set's replica Pods have been updated
    // to the updateRevision. status's currentRevision is set to updateRevision and its' updateRevision
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  7. pkg/apis/apps/v1/conversion_test.go

    				UpdatedReplicas:    int32(3),
    				CurrentRevision:    "12345",
    				UpdateRevision:     "23456",
    				ObservedGeneration: observedGeneration,
    			},
    			stsStatus2: &appsv1.StatefulSetStatus{
    				Replicas:           int32(3),
    				ReadyReplicas:      int32(1),
    				CurrentReplicas:    int32(3),
    				UpdatedReplicas:    int32(3),
    				CurrentRevision:    "12345",
    				UpdateRevision:     "23456",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. pkg/apis/apps/v1beta2/conversion_test.go

    				UpdatedReplicas:    int32(3),
    				CurrentRevision:    "12345",
    				UpdateRevision:     "23456",
    				ObservedGeneration: observedGeneration,
    			},
    			stsStatus2: &v1beta2.StatefulSetStatus{
    				Replicas:           int32(3),
    				ReadyReplicas:      int32(1),
    				CurrentReplicas:    int32(3),
    				UpdatedReplicas:    int32(3),
    				CurrentRevision:    "12345",
    				UpdateRevision:     "23456",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta1/types.go

    	UpdatedReplicas int32 `json:"updatedReplicas,omitempty" protobuf:"varint,5,opt,name=updatedReplicas"`
    
    	// currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
    	// sequence [0,currentReplicas).
    	CurrentRevision string `json:"currentRevision,omitempty" protobuf:"bytes,6,opt,name=currentRevision"`
    
    	// updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // indicated by currentRevision.
      optional int32 currentReplicas = 4;
    
      // updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
      // indicated by updateRevision.
      optional int32 updatedReplicas = 5;
    
      // currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top