Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for MutatingWebhook (0.2 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/mutatingwebhook.go

    	MatchConditions         []MatchConditionApplyConfiguration                   `json:"matchConditions,omitempty"`
    }
    
    // MutatingWebhookApplyConfiguration constructs an declarative configuration of the MutatingWebhook type for use with
    // apply.
    func MutatingWebhook() *MutatingWebhookApplyConfiguration {
    	return &MutatingWebhookApplyConfiguration{}
    }
    
    // WithName sets the Name field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:28:26 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/mutatingwebhook.go

    	MatchConditions         []MatchConditionApplyConfiguration              `json:"matchConditions,omitempty"`
    }
    
    // MutatingWebhookApplyConfiguration constructs an declarative configuration of the MutatingWebhook type for use with
    // apply.
    func MutatingWebhook() *MutatingWebhookApplyConfiguration {
    	return &MutatingWebhookApplyConfiguration{}
    }
    
    // WithName sets the Name field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:28:26 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/apis/admissionregistration/v1beta1/defaults_test.go

    				}},
    			},
    		},
    		{
    			name: "MutatingWebhookConfiguration",
    			original: &v1beta1.MutatingWebhookConfiguration{
    				Webhooks: []v1beta1.MutatingWebhook{{}},
    			},
    			expected: &v1beta1.MutatingWebhookConfiguration{
    				Webhooks: []v1beta1.MutatingWebhook{{
    					FailurePolicy:           &ignore,
    					MatchPolicy:             &exact,
    					ReinvocationPolicy:      &never,
    					TimeoutSeconds:          &thirty,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 20:24:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. 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)
  8. pkg/webhooks/webhookpatch_test.go

    					{
    						ObjectMeta: metav1.ObjectMeta{
    							Name:   "config1",
    							Labels: testRevisionLabel,
    						},
    						Webhooks: []admissionregistrationv1.MutatingWebhook{
    							{
    								Name:         "webhook1",
    								ClientConfig: admissionregistrationv1.WebhookClientConfig{},
    							},
    						},
    					},
    				},
    			},
    			testRevision,
    			"config1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 09:53:38 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/configuration/mutating_webhook_manager_test.go

    						Webhooks:   []v1.MutatingWebhook{{Name: "webhook3.1"}},
    					},
    					{
    						ObjectMeta: metav1.ObjectMeta{Name: "webhook4"},
    						Webhooks:   []v1.MutatingWebhook{{Name: "webhook4.1"}},
    					},
    				},
    				[]*v1.MutatingWebhookConfiguration{
    					{
    						ObjectMeta: metav1.ObjectMeta{Name: "webhook4"},
    						Webhooks:   []v1.MutatingWebhook{{Name: "webhook4.1-updated"}, {Name: "webhook4.2"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 15:20:14 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. 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)
Back to top