Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for MutatingWebhook (0.24 sec)

  1. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      // Documentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/
      //
      // Required.
      optional string expression = 2;
    }
    
    // MutatingWebhook describes an admission webhook and the resources and operations it applies to.
    message MutatingWebhook {
      // The name of the admission webhook.
      // Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  2. istioctl/pkg/tag/generate.go

    	// Revision is the revision to associate the revision tag with.
    	Revision string
    	// WebhookName is an override for the mutating webhook name.
    	WebhookName string
    	// ManifestsPath specifies where the manifests to render the mutatingwebhook can be found.
    	// TODO(Monkeyanator) once we stop using Helm templating remove this.
    	ManifestsPath string
    	// Generate determines whether we should just generate the webhooks without applying. This
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      //
      // Defaults to "Equivalent"
      // +optional
      optional string matchPolicy = 7;
    }
    
    // MutatingWebhook describes an admission webhook and the resources and operations it applies to.
    message MutatingWebhook {
      // The name of the admission webhook.
      // Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/types.go

    	//      - If failurePolicy=Ignore, the error is ignored and the webhook is skipped
    	//
    	// +optional
    	MatchConditions []MatchCondition
    }
    
    // MutatingWebhook describes an admission webhook and the resources and operations it applies to.
    type MutatingWebhook struct {
    	// The name of the admission webhook.
    	// Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      //
      // Defaults to "Equivalent"
      // +optional
      optional string matchPolicy = 7;
    }
    
    // MutatingWebhook describes an admission webhook and the resources and operations it applies to.
    message MutatingWebhook {
      // The name of the admission webhook.
      // Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	MatchConditions []MatchCondition `json:"matchConditions,omitempty" patchStrategy:"merge" patchMergeKey:"name" protobuf:"bytes,11,rep,name=matchConditions"`
    }
    
    // MutatingWebhook describes an admission webhook and the resources and operations it applies to.
    type MutatingWebhook struct {
    	// The name of the admission webhook.
    	// Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	MatchConditions []MatchCondition `json:"matchConditions,omitempty" patchStrategy:"merge" patchMergeKey:"name" protobuf:"bytes,11,opt,name=matchConditions"`
    }
    
    // MutatingWebhook describes an admission webhook and the resources and operations it applies to.
    type MutatingWebhook struct {
    	// The name of the admission webhook.
    	// Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    }
    
    func (MatchResources) SwaggerDoc() map[string]string {
    	return map_MatchResources
    }
    
    var map_MutatingWebhook = map[string]string{
    	"":                        "MutatingWebhook describes an admission webhook and the resources and operations it applies to.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  9. pkg/test/kube/dump.go

    			mwh := mwh
    			errG.Go(func() error {
    				out, err := yaml.Marshal(mwh)
    				if err != nil {
    					return err
    				}
    				return os.WriteFile(outputPath(workDir, c, mwh.Name, "mutatingwebhook.yaml"), out, os.ModePerm)
    			})
    		}
    		vwhs, err := c.Kube().AdmissionregistrationV1().ValidatingWebhookConfigurations().List(context.TODO(), metav1.ListOptions{})
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  10. Makefile.core.mk

    	cp manifests/charts/base/templates/reader-serviceaccount.yaml manifests/charts/istiod-remote/templates
    	cp manifests/charts/istio-control/istio-discovery/templates/mutatingwebhook.yaml manifests/charts/istiod-remote/templates
    	cp manifests/charts/istio-control/istio-discovery/templates/reader-clusterrole.yaml manifests/charts/istiod-remote/templates
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top