Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ValidatingWebhookConfigurations (0.25 sec)

  1. istioctl/pkg/tag/generate.go

    	// that is set to `Fail` by Istiod, we avoid of setting it back to the default `Ignore`.
    	vwh, err := client.Kube().AdmissionregistrationV1().ValidatingWebhookConfigurations().
    		Get(context.Background(), vwhBaseTemplateName, metav1.GetOptions{})
    	if err != nil && !errors.IsNotFound(err) {
    		return nil, err
    	}
    	if vwh == nil {
    		return whConfig, nil
    	}
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Oct 09 16:05:45 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. istioctl/pkg/precheck/precheck.go

    			group:    "admissionregistration.k8s.io",
    			version:  "v1",
    			resource: "mutatingwebhookconfigurations",
    		},
    		{
    			group:    "admissionregistration.k8s.io",
    			version:  "v1",
    			resource: "validatingwebhookconfigurations",
    		},
    	}
    	msgs := diag.Messages{}
    	for _, r := range Resources {
    		err := checkCanCreateResources(cli, r.namespace, r.group, r.version, r.resource)
    		if err != nil {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Oct 24 02:31:32 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. common/scripts/metallb-native.yaml

      resourceNames:
      - metallb-webhook-configuration
      resources:
      - validatingwebhookconfigurations
      - mutatingwebhookconfigurations
      verbs:
      - create
      - delete
      - get
      - list
      - patch
      - update
      - watch
    - apiGroups:
      - admissionregistration.k8s.io
      resources:
      - validatingwebhookconfigurations
      - mutatingwebhookconfigurations
      verbs:
      - list
      - watch
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.28.md

    - The short names `vwc` and `mwc` were introduced for the resources `validatingwebhookconfigurations` and `mutatingwebhookconfigurations`. ([#117535](https://github.com/kubernetes/kubernetes/pull/117535), [@hysyeah](https://github.com/hysyeah))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Oct 23 04:34:59 UTC 2024
    - 456.9K bytes
    - Viewed (0)
Back to top