Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 65 for controllerrevisions (0.52 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/controller/daemon/daemon_controller.go

    // updateHistory figures out what DaemonSet(s) manage a ControllerRevision when the ControllerRevision
    // is updated and wake them up. If anything of the ControllerRevision has changed, we need to  awaken
    // both the old and new DaemonSets.
    func (dsc *DaemonSetsController) updateHistory(logger klog.Logger, old, cur interface{}) {
    	curHistory := cur.(*apps.ControllerRevision)
    	oldHistory := old.(*apps.ControllerRevision)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller_test.go

    		podStore.Add(pod)
    	}
    }
    
    func newControllerRevision(name string, namespace string, label map[string]string,
    	ownerReferences []metav1.OwnerReference) *apps.ControllerRevision {
    	return &apps.ControllerRevision{
    		TypeMeta: metav1.TypeMeta{APIVersion: "apps/v1"},
    		ObjectMeta: metav1.ObjectMeta{
    			Name:            name,
    			Labels:          label,
    			Namespace:       namespace,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta1.ControllerRevision.json

    {
      "kind": "ControllerRevision",
      "apiVersion": "apps/v1beta1",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.ControllerRevision.json

    {
      "kind": "ControllerRevision",
      "apiVersion": "apps/v1beta2",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.ControllerRevision.yaml

    apiVersion: apps/v1beta1
    data:
      apiVersion: example.com/v1
      kind: CustomType
      spec:
        replicas: 1
      status:
        available: 1
    kind: ControllerRevision
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 979 bytes
    - Viewed (0)
Back to top