Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for MutatingWebhook (0.18 sec)

  1. pkg/apis/admissionregistration/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.MutatingWebhook)(nil), (*admissionregistration.MutatingWebhook)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_MutatingWebhook_To_admissionregistration_MutatingWebhook(a.(*v1.MutatingWebhook), b.(*admissionregistration.MutatingWebhook), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:46:30 UTC 2024
    - 73.6K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/v1beta1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1beta1.MutatingWebhook)(nil), (*admissionregistration.MutatingWebhook)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1beta1_MutatingWebhook_To_admissionregistration_MutatingWebhook(a.(*v1beta1.MutatingWebhook), b.(*admissionregistration.MutatingWebhook), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 73K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/validation/validation.go

    		allErrors = append(allErrors, validateMatchConditions(hook.MatchConditions, opts, fldPath.Child("matchConditions"))...)
    	}
    
    	return allErrors
    }
    
    func validateMutatingWebhook(hook *admissionregistration.MutatingWebhook, opts validationOptions, fldPath *field.Path) field.ErrorList {
    	var allErrors field.ErrorList
    	// hook.Name must be fully qualified
    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/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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
Back to top