Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for MatchResources (0.62 sec)

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

    	out.ParamRef = (*admissionregistration.ParamRef)(unsafe.Pointer(in.ParamRef))
    	if in.MatchResources != nil {
    		in, out := &in.MatchResources, &out.MatchResources
    		*out = new(admissionregistration.MatchResources)
    		if err := Convert_v1_MatchResources_To_admissionregistration_MatchResources(*in, *out, s); err != nil {
    			return err
    		}
    	} else {
    		out.MatchResources = nil
    	}
    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

    	if in.MatchResources != nil {
    		in, out := &in.MatchResources, &out.MatchResources
    		*out = new(admissionregistration.MatchResources)
    		if err := Convert_v1beta1_MatchResources_To_admissionregistration_MatchResources(*in, *out, s); err != nil {
    			return err
    		}
    	} else {
    		out.MatchResources = nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 73K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// Note that this is differs from ValidatingAdmissionPolicy matchConstraints, where resourceRules are required.
    	// +optional
    	MatchResources *MatchResources `json:"matchResources,omitempty" protobuf:"bytes,3,rep,name=matchResources"`
    
    	// validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// Note that this is differs from ValidatingAdmissionPolicy matchConstraints, where resourceRules are required.
    	// +optional
    	MatchResources *MatchResources `json:"matchResources,omitempty" protobuf:"bytes,3,rep,name=matchResources"`
    
    	// validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced.
    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/v1beta1/generated.proto

      //
      // Required.
      optional string expression = 2;
    }
    
    // MatchResources decides whether to run the admission control policy on an object based
    // on whether it meets the match criteria.
    // The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
    // +structType=atomic
    message MatchResources {
      // NamespaceSelector decides whether to run the admission control policy on an object based
    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. pkg/apis/admissionregistration/types.go

    	// Note that this is differs from ValidatingAdmissionPolicy matchConstraints, where resourceRules are required.
    	// +optional
    	MatchResources *MatchResources
    
    	// validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced.
    	// If a validation evaluates to false it is always enforced according to these actions.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      //
      // Required.
      optional string expression = 2;
    }
    
    // MatchResources decides whether to run the admission control policy on an object based
    // on whether it meets the match criteria.
    // The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
    // +structType=atomic
    message MatchResources {
      // NamespaceSelector decides whether to run the admission control policy on an object based
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/validation/validation.go

    		return groupVersion{gv[:i], gv[i+1:]}, nil
    	default:
    		return groupVersion{}, fmt.Errorf("unexpected GroupVersion string: %v", gv)
    	}
    }
    
    func validateMatchResources(mc *admissionregistration.MatchResources, fldPath *field.Path) field.ErrorList {
    	var allErrors field.ErrorList
    	if mc == nil {
    		return allErrors
    	}
    	if mc.MatchPolicy == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
Back to top