Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for MutatingWebhook (0.29 sec)

  1. manifests/charts/default/templates/mutatingwebhook.yaml

    # Adapted from istio-discovery/templates/mutatingwebhook.yaml
    # Removed paths for legacy and default selectors since a revision tag
    # is inherently created from a specific revision
    {{/* Copy just what we need to avoid expensive deepCopy */}}
    {{- $whv := dict
     "revision" .Values.revision
      "injectionURL" .Values.istiodRemote.injectionURL
      "namespace" .Release.Namespace }}
    {{- define "core" }}
    - name: {{.Prefix}}sidecar-injector.istio.io
      clientConfig:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/templates/mutatingwebhook.yaml

    Ignasi Barrera <******@****.***> 1713464209 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/templates/mutatingwebhook.yaml

    Ignasi Barrera <******@****.***> 1713464209 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors.go

    	GetType() string
    }
    
    // NewMutatingWebhookAccessor creates an accessor for a MutatingWebhook.
    func NewMutatingWebhookAccessor(uid, configurationName string, h *v1.MutatingWebhook) WebhookAccessor {
    	return &mutatingWebhookAccessor{uid: uid, configurationName: configurationName, MutatingWebhook: h}
    }
    
    type mutatingWebhookAccessor struct {
    	*v1.MutatingWebhook
    	uid               string
    	configurationName string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/validation/validation_test.go

    		config: newMutatingWebhookConfiguration([]admissionregistration.MutatingWebhook{{
    			Name:         "webhook.k8s.io",
    			ClientConfig: admissionregistration.WebhookClientConfig{},
    		},
    		}, true),
    		expectedError: `exactly one of`,
    	}, {
    		name: "both service and URL provided",
    		config: newMutatingWebhookConfiguration([]admissionregistration.MutatingWebhook{{
    			Name: "webhook.k8s.io",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/templates/revision-tags.yaml

    # Adapted from istio-discovery/templates/mutatingwebhook.yaml
    # Removed paths for legacy and default selectors since a revision tag
    # is inherently created from a specific revision
    {{- $whv := dict
     "revision" .Values.revision
      "injectionPath" .Values.istiodRemote.injectionPath
      "injectionURL" .Values.istiodRemote.injectionURL
      "reinvocationPolicy" .Values.sidecarInjectorWebhook.reinvocationPolicy
      "namespace" .Release.Namespace }}
    {{- define "core" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. pkg/kubeapiserver/options/plugins.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle"
    	"k8s.io/apiserver/pkg/admission/plugin/resourcequota"
    	mutatingwebhook "k8s.io/apiserver/pkg/admission/plugin/webhook/mutating"
    	validatingwebhook "k8s.io/apiserver/pkg/admission/plugin/webhook/validating"
    )
    
    // AllOrderedPlugins is the list of all the plugins in order.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 17:20:46 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. operator/cmd/mesh/manifest-generate_test.go

    	t.Helper()
    	objs, err := object.ParseK8sObjectsFromYAMLManifest(yml)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(objs) != 1 {
    		t.Fatal("expected one webhook")
    	}
    	return mustGetWebhook(t, *objs[0])
    }
    
    type LabelSet struct {
    	namespace, pod klabels.Set
    }
    
    func mergeWebhooks(whs ...[]v1.MutatingWebhook) []v1.MutatingWebhook {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  9. istioctl/pkg/checkinject/checkinject.go

    			Reason:   reason,
    		})
    	}
    	sort.Slice(results, func(i, j int) bool {
    		return results[i].Name < results[j].Name
    	})
    	return results
    }
    
    func analyzeWebhooksMatchStatus(whs []admitv1.MutatingWebhook, podLabels, nsLabels map[string]string) (reason string, injected bool) {
    	for _, wh := range whs {
    		nsMatched, nsLabel := extractMatchedSelectorInfo(wh.NamespaceSelector, nsLabels)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/admission.go

    	admissionmetrics "k8s.io/apiserver/pkg/admission/metrics"
    	"k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle"
    	validatingadmissionpolicy "k8s.io/apiserver/pkg/admission/plugin/policy/validating"
    	mutatingwebhook "k8s.io/apiserver/pkg/admission/plugin/webhook/mutating"
    	validatingwebhook "k8s.io/apiserver/pkg/admission/plugin/webhook/validating"
    	apiserverapi "k8s.io/apiserver/pkg/apis/apiserver"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top