Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GetObjectSelector (0.34 sec)

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

    	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.
    	GetSideEffects() *v1.SideEffectClass
    	// GetTimeoutSeconds gets the webhook TimeoutSeconds 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)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors_test.go

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

    	"k8s.io/apimachinery/pkg/api/meta"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/klog/v2"
    )
    
    type ObjectSelectorProvider interface {
    	// GetObjectSelector gets the webhook ObjectSelector field.
    	GetParsedObjectSelector() (labels.Selector, error)
    }
    
    // Matcher decides if a request selected by the ObjectSelector.
    type Matcher struct {
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 26 00:41:14 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    }
    
    func (x *SidecarInjectorConfig) GetInjectedAnnotations() *structpb.Struct {
    	if x != nil {
    		return x.InjectedAnnotations
    	}
    	return nil
    }
    
    func (x *SidecarInjectorConfig) GetObjectSelector() *structpb.Struct {
    	if x != nil {
    		return x.ObjectSelector
    	}
    	return nil
    }
    
    func (x *SidecarInjectorConfig) GetInjectionURL() string {
    	if x != nil {
    		return x.InjectionURL
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top