Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetClientConfig (0.15 sec)

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

    	ret := webhookutil.ClientConfig{Name: w.GetName(), CABundle: w.GetClientConfig().CABundle}
    	if w.GetClientConfig().URL != nil {
    		ret.URL = *w.GetClientConfig().URL
    	}
    	if w.GetClientConfig().Service != nil {
    		ret.Service = &webhookutil.ClientConfigService{
    			Name:      w.GetClientConfig().Service.Name,
    			Namespace: w.GetClientConfig().Service.Namespace,
    		}
    		if w.GetClientConfig().Service.Port != nil {
    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

    				t.Errorf("expected GetValidatingWebhook to be nil for mutating webhook accessor")
    			}
    			copy := &v1.MutatingWebhook{
    				Name:                    accessor.GetName(),
    				ClientConfig:            accessor.GetClientConfig(),
    				Rules:                   accessor.GetRules(),
    				FailurePolicy:           accessor.GetFailurePolicy(),
    				MatchPolicy:             accessor.GetMatchPolicy(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top