Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for PropagationPolicy (0.32 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			strategy:           orphanDeleteStrategy,
    			expectedFinalizers: []string{metav1.FinalizerDeleteDependents},
    		},
    		"no existing finalizers, PropagationPolicy=Background, defaultDeleteStrategy": {
    			options:          &metav1.DeleteOptions{PropagationPolicy: &backgroundPolicy},
    			strategy:         defaultDeleteStrategy,
    			expectedNotFound: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/policy.v1.Eviction.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.DeleteOptions.yaml

    apiVersion: v1
    dryRun:
    - dryRunValue
    gracePeriodSeconds: 1
    kind: DeleteOptions
    orphanDependents: true
    preconditions:
      resourceVersion: resourceVersionValue
      uid: uidValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 215 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.DeleteOptions.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 287 bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/policy.v1beta1.Eviction.yaml

    apiVersion: policy/v1beta1
    deleteOptions:
      dryRun:
      - dryRunValue
      gracePeriodSeconds: 1
      orphanDependents: true
      preconditions:
        resourceVersion: resourceVersionValue
        uid: uidValue
      propagationPolicy: propagationPolicyValue
    kind: Eviction
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/policy.v1.Eviction.yaml

    apiVersion: policy/v1
    deleteOptions:
      dryRun:
      - dryRunValue
      gracePeriodSeconds: 1
      orphanDependents: true
      preconditions:
        resourceVersion: resourceVersionValue
        uid: uidValue
      propagationPolicy: propagationPolicyValue
    kind: Eviction
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/policy.v1beta1.Eviction.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_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: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  9. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    		return err
    	} else if expiredAt == nil {
    		return nil
    	}
    	// Cascade deletes the Jobs if TTL truly expires.
    	policy := metav1.DeletePropagationForeground
    	options := metav1.DeleteOptions{
    		PropagationPolicy: &policy,
    		Preconditions:     &metav1.Preconditions{UID: &fresh.UID},
    	}
    	logger.V(4).Info("Cleaning up Job", "job", klog.KObj(fresh))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. api/openapi-spec/swagger.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: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top