Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GetNamespaceSelector (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors_test.go

    				Rules:                   accessor.GetRules(),
    				FailurePolicy:           accessor.GetFailurePolicy(),
    				MatchPolicy:             accessor.GetMatchPolicy(),
    				NamespaceSelector:       accessor.GetNamespaceSelector(),
    				ObjectSelector:          accessor.GetObjectSelector(),
    				SideEffects:             accessor.GetSideEffects(),
    				TimeoutSeconds:          accessor.GetTimeoutSeconds(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors.go

    	GetFailurePolicy() *v1.FailurePolicyType
    	// GetMatchPolicy gets the webhook MatchPolicy field.
    	GetMatchPolicy() *v1.MatchPolicyType
    	// GetNamespaceSelector gets the webhook NamespaceSelector field.
    	GetNamespaceSelector() *metav1.LabelSelector
    	// GetObjectSelector gets the webhook ObjectSelector field.
    	GetObjectSelector() *metav1.LabelSelector
    	// GetSideEffects gets the webhook SideEffects field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/namespace/matcher.go

    	"k8s.io/apiserver/pkg/admission"
    	clientset "k8s.io/client-go/kubernetes"
    	corelisters "k8s.io/client-go/listers/core/v1"
    )
    
    type NamespaceSelectorProvider interface {
    	// GetNamespaceSelector gets the webhook NamespaceSelector field.
    	GetParsedNamespaceSelector() (labels.Selector, error)
    }
    
    // Matcher decides if a request is exempted by the NamespaceSelector of a
    // webhook configuration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 00:53:08 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top