Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for PropagationPolicy (0.2 sec)

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

    	if options != nil && options.OrphanDependents != nil {
    		//nolint:staticcheck // SA1019 backwards compatibility
    		return *options.OrphanDependents
    	}
    	if options != nil && options.PropagationPolicy != nil {
    		switch *options.PropagationPolicy {
    		case metav1.DeletePropagationOrphan:
    			return true
    		case metav1.DeletePropagationBackground, metav1.DeletePropagationForeground:
    			return false
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// 'Foreground' - a cascading policy that deletes all dependents in the
    	// foreground.
    	// +optional
    	PropagationPolicy *DeletionPropagation `json:"propagationPolicy,omitempty" protobuf:"varint,4,opt,name=propagationPolicy"`
    
    	// When present, indicates that modifications should not be
    	// persisted. An invalid or unrecognized dryRun directive will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"orphanDependents":   "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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  4. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      optional Preconditions preconditions = 2;
    
      // 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.
      // +optional
      optional bool orphanDependents = 3;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      optional Preconditions preconditions = 2;
    
      // 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.
      // +optional
      optional bool orphanDependents = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
Back to top