Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 149 for orphaned (0.29 sec)

  1. api/openapi-spec/v3/apis__scheduling.k8s.io__v1_openapi.json

              },
              "orphanDependents": {
                "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
                "type": "boolean"
              },
              "preconditions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 116.6K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

              },
              "orphanDependents": {
                "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
                "type": "boolean"
              },
              "preconditions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

              },
              "orphanDependents": {
                "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
                "type": "boolean"
              },
              "preconditions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

              },
              "orphanDependents": {
                "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
                "type": "boolean"
              },
              "preconditions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

              },
              "orphanDependents": {
                "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
                "type": "boolean"
              },
              "preconditions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

              },
              "orphanDependents": {
                "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
                "type": "boolean"
              },
              "preconditions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_utils.go

    		return false
    	}
    	for _, ownerRef := range claim.GetOwnerReferences() {
    		if matchesRef(&ownerRef, set, controllerKind) {
    			if ownerRef.UID != set.GetUID() {
    				// A UID mismatch means that pods were incorrectly orphaned. Treating this as an unexpected
    				// controller means we won't touch the PVCs (eg, leave it to the garbage collector to clean
    				// up if appropriate).
    				return true
    			}
    			continue // This is us.
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  8. pkg/controller/endpoint/endpoints_controller.go

    // reboots).
    func (e *Controller) checkLeftoverEndpoints() {
    	list, err := e.endpointsLister.List(labels.Everything())
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("Unable to list endpoints (%v); orphaned endpoints will not be cleaned up. (They're pretty harmless, but you can restart this component if you want another attempt made.)", err))
    		return
    	}
    	for _, ep := range list {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

              "type": "string"
            },
            "orphanDependents": {
              "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
              "type": "boolean"
            },
            "preconditions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller.go

    		dsc.enqueueDaemonSet(ds)
    		return
    	}
    
    	// Otherwise, it's an orphan. Get a list of all matching DaemonSets and sync
    	// them to see if anyone wants to adopt it.
    	// DO NOT observe creation because no controller should be waiting for an
    	// orphan.
    	dss := dsc.getDaemonSetsForPod(pod)
    	if len(dss) == 0 {
    		return
    	}
    	logger.V(4).Info("Orphan Pod added", "pod", klog.KObj(pod))
    	for _, ds := range dss {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top