Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 4,713 for apiVersions (0.21 sec)

  1. manifests/charts/istiod-remote/templates/mutatingwebhook.yaml

      - operations: [ "CREATE" ]
        apiGroups: [""]
        apiVersions: ["v1"]
        resources: ["pods"]
      failurePolicy: Fail
      reinvocationPolicy: "{{ .reinvocationPolicy }}"
      admissionReviewVersions: ["v1beta1", "v1"]
    {{- end }}
    {{- /* Installed for each revision - not installed for cluster resources ( cluster roles, bindings, crds) */}}
    {{- if not .Values.global.operatorManageWebhooks }}
    apiVersion: admissionregistration.k8s.io/v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/mutatingwebhook.yaml

      - operations: [ "CREATE" ]
        apiGroups: [""]
        apiVersions: ["v1"]
        resources: ["pods"]
      failurePolicy: Fail
      reinvocationPolicy: "{{ .reinvocationPolicy }}"
      admissionReviewVersions: ["v1beta1", "v1"]
    {{- end }}
    {{- /* Installed for each revision - not installed for cluster resources ( cluster roles, bindings, crds) */}}
    {{- if not .Values.global.operatorManageWebhooks }}
    apiVersion: admissionregistration.k8s.io/v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admission/v1beta1/types.go

    	//
    	// For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
    	// `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]` and `matchPolicy: Equivalent`,
    	// an API request to apps/v1beta1 deployments would be converted and sent to the webhook
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 9.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/rules/rules.go

    	default:
    		return false
    	}
    }
    
    func (r *Matcher) group() bool {
    	return exactOrWildcard(r.Rule.APIGroups, r.Attr.GetResource().Group)
    }
    
    func (r *Matcher) version() bool {
    	return exactOrWildcard(r.Rule.APIVersions, r.Attr.GetResource().Version)
    }
    
    func (r *Matcher) operation() bool {
    	attrOp := r.Attr.GetOperation()
    	for _, op := range r.Rule.Operations {
    		if op == v1.OperationAll {
    			return true
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:38:55 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      //
      // - Exact: match a request only if it exactly matches a specified rule.
      // For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1,
      // but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`,
      // a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	APIGroups []string `json:"apiGroups,omitempty" protobuf:"bytes,1,rep,name=apiGroups"`
    
    	// APIVersions is the API versions the resources belong to. '*' is all versions.
    	// If '*' is present, the length of the slice must be one.
    	// Required.
    	// +listType=atomic
    	APIVersions []string `json:"apiVersions,omitempty" protobuf:"bytes,2,rep,name=apiVersions"`
    
    	// Resources is a list of resources this rule applies to.
    	//
    	// For example:
    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. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_test.go

    			t.Errorf("[%d] unexpected error reading body at path %q: %v", i, path, err)
    			continue
    		}
    
    		t.Logf("[%d] json at %s: %s", i, path, string(body))
    
    		if i == 0 {
    			// legacy API returns APIVersions
    			group := metav1.APIVersions{}
    			err = json.Unmarshal(body, &group)
    			if err != nil {
    				t.Errorf("[%d] unexpected error parsing json body at path %q: %v", i, path, err)
    				continue
    			}
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

    }
    
    // Rule is a tuple of APIGroups, APIVersion, and Resources.It is recommended
    // to make sure that all the tuple expansions are valid.
    message Rule {
      // APIGroups is the API groups the resources belong to. '*' is all groups.
      // If '*' is present, the length of the slice must be one.
      // Required.
      // +listType=atomic
      repeated string apiGroups = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. pkg/kube/adapter.go

    		Request:  req,
    		Response: resp,
    	}, nil
    }
    
    func AdmissionReviewAdapterToKube(ar *AdmissionReview, apiVersion string) runtime.Object {
    	var res runtime.Object
    	arRequest := ar.Request
    	arResponse := ar.Response
    	if apiVersion == "" {
    		apiVersion = admissionAPIV1beta1
    	}
    	switch apiVersion {
    	case admissionAPIV1beta1:
    		arv1beta1 := kubeApiAdmissionv1beta1.AdmissionReview{}
    		if arRequest != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 10 16:40:00 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    }
    
    var map_Rule = map[string]string{
    	"":            "Rule is a tuple of APIGroups, APIVersion, and Resources.It is recommended to make sure that all the tuple expansions are valid.",
    	"apiGroups":   "APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
Back to top