Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for AdmissionReviewVersions (0.4 sec)

  1. pkg/apis/admissionregistration/validation/validation_test.go

    	// If the test case did not specify an AdmissionReviewVersions, default it so the test passes as
    	// this field will be defaulted in production code.
    	for i := range hooks {
    		if defaultAdmissionReviewVersions && len(hooks[i].AdmissionReviewVersions) == 0 {
    			hooks[i].AdmissionReviewVersions = []string{"v1beta1"}
    		}
    	}
    	return &admissionregistration.ValidatingWebhookConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors.go

    	GetSideEffects() *v1.SideEffectClass
    	// GetTimeoutSeconds gets the webhook TimeoutSeconds field.
    	GetTimeoutSeconds() *int32
    	// GetAdmissionReviewVersions gets the webhook AdmissionReviewVersions field.
    	GetAdmissionReviewVersions() []string
    
    	// GetMatchConditions gets the webhook match conditions field.
    	GetMatchConditions() []v1.MatchCondition
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/validation/validation.go

    		allErrors = append(allErrors, validateAdmissionReviewVersions(hook.AdmissionReviewVersions, opts.requireRecognizedAdmissionReviewVersion, field.NewPath("webhooks").Index(i).Child("admissionReviewVersions"))...)
    		if opts.requireUniqueWebhookNames && len(hook.Name) > 0 {
    			if hookNames.Has(hook.Name) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// include any versions known to the API Server, calls to the webhook will fail
    	// and be subject to the failure policy.
    	// +listType=atomic
    	AdmissionReviewVersions []string `json:"admissionReviewVersions" protobuf:"bytes,8,rep,name=admissionReviewVersions"`
    
    	// MatchConditions is a list of conditions that must be met for a request to be sent to this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // failure policy.
      // The timeout value must be between 1 and 30 seconds.
      // Default to 10 seconds.
      // +optional
      optional int32 timeoutSeconds = 7;
    
      // AdmissionReviewVersions is an ordered list of preferred `AdmissionReview`
      // versions the Webhook expects. API server will try to use first version in
      // the list which it supports. If none of the versions specified in this list
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. operator/cmd/mesh/manifest-generate_test.go

          path: "/inject"
      sideEffects: None
      rules:
      - operations: [ "CREATE" ]
        apiGroups: [""]
        apiVersions: ["v1"]
        resources: ["pods"]
      failurePolicy: Fail
      admissionReviewVersions: ["v1beta1", "v1"]
      namespaceSelector:
        matchLabels:
          istio-injection: enabled
      objectSelector:
        matchExpressions:
        - key: "sidecar.istio.io/inject"
          operator: NotIn
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    							Format:      "int32",
    						},
    					},
    					"admissionReviewVersions": {
    						VendorExtensible: spec.VendorExtensible{
    							Extensions: spec.Extensions{
    								"x-kubernetes-list-type": "atomic",
    							},
    						},
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  8. api/openapi-spec/swagger.json

          "description": "MutatingWebhook describes an admission webhook and the resources and operations it applies to.",
          "properties": {
            "admissionReviewVersions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top