Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for MutatingWebhookConfiguration (0.33 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.json

    {
      "kind": "MutatingWebhookConfiguration",
      "apiVersion": "admissionregistration.k8s.io/v1beta1",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.yaml

    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.yaml

    apiVersion: admissionregistration.k8s.io/v1beta1
    kind: MutatingWebhookConfiguration
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.json

    {
      "kind": "MutatingWebhookConfiguration",
      "apiVersion": "admissionregistration.k8s.io/v1",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1.MutatingWebhookConfiguration.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 884 bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 889 bytes
    - Viewed (0)
  7. 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)
  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