Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for controllerRef (0.3 sec)

  1. pkg/controller/daemon/update.go

    		if err != nil {
    			return nil, err
    		}
    	}
    	return keepCur, nil
    }
    
    // controlledHistories returns all ControllerRevisions controlled by the given DaemonSet.
    // This also reconciles ControllerRef by adopting/orphaning.
    // Note that returned histories are pointers to objects in the cache.
    // If you want to modify one, you need to deep-copy it first.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  2. pkg/controller/disruption/disruption_test.go

    		},
    	}
    
    	for tn, tc := range testCases {
    		t.Run(tn, func(t *testing.T) {
    			controllerRef := &metav1.OwnerReference{
    				APIVersion: tc.apiVersion,
    				Kind:       tc.kind,
    				Name:       tc.name,
    				UID:        tc.uid,
    			}
    
    			controllerAndScale, _ := tc.finderFunc(ctx, controllerRef, metav1.NamespaceDefault)
    
    			if controllerAndScale == nil {
    				if tc.findsScale {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    	}
    
    	controllerRef := metav1.GetControllerOf(obj)
    	controllerName := "<none>"
    	if controllerRef != nil {
    		withKind := true
    		gv, err := schema.ParseGroupVersion(controllerRef.APIVersion)
    		if err != nil {
    			return nil, err
    		}
    		gvk := gv.WithKind(controllerRef.Kind)
    		controllerName = formatResourceName(gvk.GroupKind(), controllerRef.Name, withKind)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.8.md

    ### Apps
    
    - The `.spec.rollbackTo` field of the Deployment kind is deprecated in `extensions/v1beta1`.
    
    - The `kubernetes.io/created-by` annotation is deprecated and will be removed in version 1.9.
      Use [ControllerRef](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/api-machinery/controller-ref.md) instead to determine which controller, if any, owns an object.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top