Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 79 for controllerrevisions (0.35 sec)

  1. staging/src/k8s.io/api/apps/v1/generated.proto

    option go_package = "k8s.io/api/apps/v1";
    
    // ControllerRevision implements an immutable snapshot of state data. Clients
    // are responsible for serializing and deserializing the objects that contain
    // their internal state.
    // Once a ControllerRevision has been successfully created, it can not be updated.
    // The API Server will fail validation of all requests that attempt to mutate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/apps/v1beta2/generated.proto

    // DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1/ControllerRevision. See the
    // release notes for more information.
    // ControllerRevision implements an immutable snapshot of state data. Clients
    // are responsible for serializing and deserializing the objects that contain
    // their internal state.
    // Once a ControllerRevision has been successfully created, it can not be updated.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta2/generated.proto

    // DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1/ControllerRevision. See the
    // release notes for more information.
    // ControllerRevision implements an immutable snapshot of state data. Clients
    // are responsible for serializing and deserializing the objects that contain
    // their internal state.
    // Once a ControllerRevision has been successfully created, it can not be updated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_test.go

    		informerFactory.Core().V1().Pods(),
    		informerFactory.Apps().V1().StatefulSets(),
    		informerFactory.Core().V1().PersistentVolumeClaims(),
    		informerFactory.Apps().V1().ControllerRevisions(),
    		client,
    	)
    	ssh := history.NewFakeHistory(informerFactory.Apps().V1().ControllerRevisions())
    	ssc.podListerSynced = alwaysReady
    	ssc.setListerSynced = alwaysReady
    	ssc.control = NewDefaultStatefulSetControl(spc, ssu, ssh)
    
    	return ssc, spc, om, ssh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

        - watch
      - apiGroups:
        - discovery.k8s.io
        resources:
        - endpointslices
        verbs:
        - get
        - list
        - watch
      - apiGroups:
        - apps
        resources:
        - controllerrevisions
        - daemonsets
        - daemonsets/status
        - deployments
        - deployments/scale
        - deployments/status
        - replicasets
        - replicasets/scale
        - replicasets/status
        - statefulsets
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta2/types.go

    // +k8s:prerelease-lifecycle-gen:removed=1.16
    // +k8s:prerelease-lifecycle-gen:replacement=apps,v1,ControllerRevision
    
    // DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1/ControllerRevision. See the
    // release notes for more information.
    // ControllerRevision implements an immutable snapshot of state data. Clients
    // are responsible for serializing and deserializing the objects that contain
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/types.go

    // the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both
    // the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However,
    // it may be subject to name and representation changes in future releases, and clients should not
    // depend on its stability. It is primarily for internal use by controllers.
    type ControllerRevision struct {
    	metav1.TypeMeta `json:",inline"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_control_test.go

    func TestStatefulSetControl_getSetRevisions(t *testing.T) {
    	type testcase struct {
    		name            string
    		existing        []*apps.ControllerRevision
    		set             *apps.StatefulSet
    		expectedCount   int
    		expectedCurrent *apps.ControllerRevision
    		expectedUpdate  *apps.ControllerRevision
    		err             bool
    	}
    
    	testFn := func(test *testcase, t *testing.T) {
    		client := fake.NewSimpleClientset()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  9. pkg/controller/controller_utils.go

    	return err
    }
    
    // TODO: merge the controller revision interface in controller_history.go with this one
    // ControllerRevisionControlInterface is an interface that knows how to patch
    // ControllerRevisions, as well as increment or decrement them. It is used
    // by the daemonset controller to ease testing of actions that it takes.
    type ControllerRevisionControlInterface interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    				rbacv1helpers.NewRule(Read...).Groups(discoveryGroup).Resources("endpointslices").RuleOrDie(),
    
    				rbacv1helpers.NewRule(Read...).Groups(appsGroup).Resources(
    					"controllerrevisions",
    					"statefulsets", "statefulsets/status", "statefulsets/scale",
    					"daemonsets", "daemonsets/status",
    					"deployments", "deployments/status", "deployments/scale",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
Back to top