Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for currentRevision (0.31 sec)

  1. 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)
  2. staging/src/k8s.io/api/apps/v1/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: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.yaml

      conditions:
      - lastTransitionTime: "2003-01-01T01:01:01Z"
        message: messageValue
        reason: reasonValue
        status: statusValue
        type: typeValue
      currentReplicas: 4
      currentRevision: currentRevisionValue
      observedGeneration: 1
      readyReplicas: 3
      replicas: 2
      updateRevision: updateRevisionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.yaml

      conditions:
      - lastTransitionTime: "2003-01-01T01:01:01Z"
        message: messageValue
        reason: reasonValue
        status: statusValue
        type: typeValue
      currentReplicas: 4
      currentRevision: currentRevisionValue
      observedGeneration: 1
      readyReplicas: 3
      replicas: 2
      updateRevision: updateRevisionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.yaml

      conditions:
      - lastTransitionTime: "2003-01-01T01:01:01Z"
        message: messageValue
        reason: reasonValue
        status: statusValue
        type: typeValue
      currentReplicas: 4
      currentRevision: currentRevisionValue
      observedGeneration: 1
      readyReplicas: 3
      replicas: 2
      updateRevision: updateRevisionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_utils_test.go

    	}
    }
    
    func TestRollingUpdateApplyRevision(t *testing.T) {
    	set := newStatefulSet(1)
    	set.Status.CollisionCount = new(int32)
    	currentSet := set.DeepCopy()
    	currentRevision, err := newRevision(set, 1, set.Status.CollisionCount)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	set.Spec.Template.Spec.Containers[0].Env = []v1.EnvVar{{Name: "foo", Value: "bar"}}
    	updateSet := set.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    					"currentRevision": {
    						SchemaProps: spec.SchemaProps{
    							Description: "currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).",
    							Type:        []string{"string"},
    							Format:      "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top