Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 145 for MutatingWebhookConfiguration (0.37 sec)

  1. operator/cmd/mesh/manifest-generate_test.go

    	}{
    		{
    			name:  "Duplicate MutatingWebhookConfiguration should be allowed when --force is enabled",
    			force: true,
    			assertFunc: func(g *WithT, objs *ObjectSet, err error) {
    				g.Expect(err).Should(BeNil())
    				g.Expect(objs.kind(name.MutatingWebhookConfigurationStr).size()).Should(Equal(3))
    			},
    		},
    		{
    			name:  "Duplicate MutatingWebhookConfiguration should not be allowed when --force is disabled",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    }
    
    func (MutatingWebhookConfiguration) SwaggerDoc() map[string]string {
    	return map_MutatingWebhookConfiguration
    }
    
    var map_MutatingWebhookConfigurationList = map[string]string{
    	"":         "MutatingWebhookConfigurationList is a list of MutatingWebhookConfiguration.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  3. pkg/registry/admissionregistration/rest/storage_apiserver.go

    	"k8s.io/client-go/discovery"
    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	"k8s.io/kubernetes/pkg/apis/admissionregistration"
    	mutatingwebhookconfigurationstorage "k8s.io/kubernetes/pkg/registry/admissionregistration/mutatingwebhookconfiguration/storage"
    	"k8s.io/kubernetes/pkg/registry/admissionregistration/resolver"
    	validatingadmissionpolicystorage "k8s.io/kubernetes/pkg/registry/admissionregistration/validatingadmissionpolicy/storage"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. istioctl/pkg/tag/tag.go

    		if err != nil {
    			return err
    		}
    		return nil
    	}
    
    	if err := Create(kubeClient, tagWhYAML, istioNS); err != nil {
    		return fmt.Errorf("failed to apply tag webhook MutatingWebhookConfiguration to cluster: %v", err)
    	}
    	fmt.Fprintf(w, tagCreatedStr, tagName, revision, tagName)
    	return nil
    }
    
    func analyzeWebhook(name, istioNamespace, wh, revision string, config *rest.Config) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. tests/integration/pilot/validation_test.go

    	"/v1/Namespace",
    	"/v1/Node",
    	"/v1/Pod",
    	"/v1/Secret",
    	"/v1/Service",
    	"/v1/ConfigMap",
    	"apiextensions.k8s.io/v1/CustomResourceDefinition",
    	"admissionregistration.k8s.io/v1/MutatingWebhookConfiguration",
    	"apps/v1/Deployment",
    	"extensions/v1beta1/Ingress",
    }
    
    func TestEnsureNoMissingCRDs(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 15:19:36 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/types.go

    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.16
    
    // MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object.
    type MutatingWebhookConfiguration struct {
    	metav1.TypeMeta `json:",inline"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  7. tests/integration/pilot/revisions/uninstall_test.go

    				ls := fmt.Sprintf("%s=%s", helmreconciler.IstioComponentLabelStr, name.IstiodRemoteComponentName)
    				cs := t.Clusters().Default()
    				objs, _ := getRemainingResourcesCluster(cs, gvr.MutatingWebhookConfiguration, ls)
    				if len(objs) == 0 {
    					t.Fatalf("expected custom webhook to exist")
    				}
    			}
    
    			validateWebhookExistence()
    
    			// Uninstall with a different file (should have no effect)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. pkg/api/testing/unstructured_test.go

    			{Version: "v1", Kind: "RangeAllocation"},
    			{Version: "v1", Kind: "ConfigMap"},
    			{Version: "v1", Kind: "ConfigMapList"},
    			{Group: "admissionregistration.k8s.io", Version: "v1beta1", Kind: "MutatingWebhookConfiguration"},
    			{Group: "admissionregistration.k8s.io", Version: "v1beta1", Kind: "MutatingWebhookConfigurationList"},
    			{Group: "admissionregistration.k8s.io", Version: "v1beta1", Kind: "ValidatingWebhookConfiguration"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/validation/validation.go

    			}
    		}
    	}
    	return allErrors
    }
    
    // ValidateMutatingWebhookConfiguration validates a webhook before creation.
    func ValidateMutatingWebhookConfiguration(e *admissionregistration.MutatingWebhookConfiguration) field.ErrorList {
    	return validateMutatingWebhookConfiguration(e, validationOptions{
    		ignoreMatchConditions:                   false,
    		allowParamsInMatchConditions:            false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/types.go

    // MutatingWebhookConfigurationList is a list of MutatingWebhookConfiguration.
    type MutatingWebhookConfigurationList struct {
    	metav1.TypeMeta
    	// Standard list metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
    	// +optional
    	metav1.ListMeta
    	// List of MutatingWebhookConfiguration.
    	Items []MutatingWebhookConfiguration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
Back to top