Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 145 for MutatingWebhookConfiguration (0.45 sec)

  1. pkg/registry/admissionregistration/mutatingwebhookconfiguration/storage/storage.go

    		CreateStrategy: mutatingwebhookconfiguration.Strategy,
    		UpdateStrategy: mutatingwebhookconfiguration.Strategy,
    		DeleteStrategy: mutatingwebhookconfiguration.Strategy,
    
    		TableConvertor: printerstorage.TableConvertor{TableGenerator: printers.NewTableGenerator().With(printersinternal.AddHandlers)},
    	}
    	options := &generic.StoreOptions{RESTOptions: optsGetter}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 15:10:55 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/v1beta1/defaults_test.go

    					SideEffects:             &unknown,
    					AdmissionReviewVersions: []string{"v1beta1"},
    				}},
    			},
    		},
    		{
    			name: "MutatingWebhookConfiguration",
    			original: &v1beta1.MutatingWebhookConfiguration{
    				Webhooks: []v1beta1.MutatingWebhook{{}},
    			},
    			expected: &v1beta1.MutatingWebhookConfiguration{
    				Webhooks: []v1beta1.MutatingWebhook{{
    					FailurePolicy:           &ignore,
    					MatchPolicy:             &exact,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 20:24:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/builder_example_test.go

    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
      name: mutating1
    ---
    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfigurationList
    items:
    - apiVersion: admissionregistration.k8s.io/v1
      kind: MutatingWebhookConfiguration
      metadata:
        name: mutating2
    - apiVersion: admissionregistration.k8s.io/v1
      kind: MutatingWebhookConfiguration
      metadata:
        name: mutating3
    ---
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. pkg/registry/admissionregistration/mutatingwebhookconfiguration/strategy.go

    func (mutatingWebhookConfigurationStrategy) NamespaceScoped() bool {
    	return false
    }
    
    // PrepareForCreate clears the status of an mutatingWebhookConfiguration before creation.
    func (mutatingWebhookConfigurationStrategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
    	ic := obj.(*admissionregistration.MutatingWebhookConfiguration)
    	ic.Generation = 1
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. istioctl/pkg/tag/tag_test.go

    				Items: []admitv1.MutatingWebhookConfiguration{
    					{
    						ObjectMeta: metav1.ObjectMeta{
    							Name:   "istio-revision-tag-wrong",
    							Labels: map[string]string{IstioTagLabel: "wrong"},
    						},
    					},
    				},
    			},
    			webhooksAfter: admitv1.MutatingWebhookConfigurationList{
    				Items: []admitv1.MutatingWebhookConfiguration{
    					{
    						ObjectMeta: metav1.ObjectMeta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 22:41:06 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/webhook.yaml

    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
      name: istio-sidecar-injector-missing-overlap
    webhooks:
    - admissionReviewVersions:
      - v1beta1
      clientConfig:
        service:
          name: fake
          namespace: istio-system
      name: sidecar-injector.istio.io
      namespaceSelector:
        matchLabels:
          istio-injection: enabled
    ---
    apiVersion: admissionregistration.k8s.io/v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 819 bytes
    - Viewed (0)
  7. pkg/webhooks/webhookpatch_test.go

    			"config1",
    			"webhook1",
    			caBundle0,
    			errNotFound.Error(),
    		},
    		{
    			"WebhookEntryNotFound",
    			admissionregistrationv1.MutatingWebhookConfigurationList{
    				Items: []admissionregistrationv1.MutatingWebhookConfiguration{
    					{
    						ObjectMeta: metav1.ObjectMeta{
    							Name:   "config1",
    							Labels: testRevisionLabel,
    						},
    					},
    				},
    			},
    			testRevision,
    			"config1",
    			"webhook1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 09:53:38 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  8. pkg/revisions/tag_watcher.go

    		return nil
    	}))
    	p.webhooks = kclient.NewFiltered[*admissionregistrationv1.MutatingWebhookConfiguration](client, kubetypes.Filter{
    		ObjectFilter: kubetypes.NewStaticObjectFilter(isTagWebhook),
    	})
    	p.index = kclient.CreateIndexWithDelegate[string, *admissionregistrationv1.MutatingWebhookConfiguration](p.webhooks,
    		func(o *admissionregistrationv1.MutatingWebhookConfiguration) []string {
    			rev := o.GetLabels()[label.IoIstioRev.Name]
    			if rev == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/webhook/webhook.go

    	revisions := sets.New[string]()
    	context.ForEach(gvk.MutatingWebhookConfiguration, func(resource *resource.Instance) bool {
    		if a.SkipDefaultRevisionedWebhook && isDefaultRevisionedWebhook(resource.Message.(*v1.MutatingWebhookConfiguration)) {
    			return true
    		}
    		wh := resource.Message.(*v1.MutatingWebhookConfiguration)
    		revs := extractRevisions(wh)
    		if len(revs) == 0 && !isIstioWebhook(wh) {
    			return true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/v1/defaults_test.go

    					NamespaceSelector: &metav1.LabelSelector{},
    					ObjectSelector:    &metav1.LabelSelector{},
    				}},
    			},
    		},
    		{
    			name: "MutatingWebhookConfiguration",
    			original: &v1.MutatingWebhookConfiguration{
    				Webhooks: []v1.MutatingWebhook{{}},
    			},
    			expected: &v1.MutatingWebhookConfiguration{
    				Webhooks: []v1.MutatingWebhook{{
    					FailurePolicy:      &fail,
    					MatchPolicy:        &equivalent,
    					ReinvocationPolicy: &never,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top