Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DeletePropagationForeground (0.43 sec)

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

    	}
    	if options != nil && options.PropagationPolicy != nil {
    		switch *options.PropagationPolicy {
    		case metav1.DeletePropagationOrphan:
    			return true
    		case metav1.DeletePropagationBackground, metav1.DeletePropagationForeground:
    			return false
    		}
    	}
    
    	// If a finalizer is set in the object, it overrides the default
    	// validation should make sure the two cases won't be true at the same time.
    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

    	// finalizer on the object, and sets its deletionTimestamp.  This policy is
    	// cascading, i.e., the dependents will be deleted with Foreground.
    	DeletePropagationForeground DeletionPropagation = "Foreground"
    )
    
    const (
    	// DryRunAll means to complete all processing stages, but don't
    	// persist changes to storage.
    	DryRunAll = "All"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
Back to top