Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 710 for apiGroup (0.22 sec)

  1. api/openapi-spec/v3/apis__coordination.k8s.io_openapi.json

    {
      "components": {
        "schemas": {
          "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup": {
            "description": "APIGroup contains the name, the supported versions, and the preferred version of a group.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__apiregistration.k8s.io_openapi.json

    {
      "components": {
        "schemas": {
          "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup": {
            "description": "APIGroup contains the name, the supported versions, and the preferred version of a group.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. pkg/registry/admissionregistration/validatingadmissionpolicybinding/authz.go

    	resource, apiGroup, apiVersion := "*", "*", "*"
    
    	if policy, err := v.policyGetter.GetValidatingAdmissionPolicy(ctx, binding.Spec.PolicyName); err == nil && policy.Spec.ParamKind != nil {
    		paramKind := policy.Spec.ParamKind
    		if gv, err := schema.ParseGroupVersion(paramKind.APIVersion); err == nil {
    			// we only need to authorize the parsed group/version
    			apiGroup = gv.Group
    			apiVersion = gv.Version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 12:19:03 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/rbac.authorization.k8s.io.v1beta1.ClusterRoleBinding.yaml

        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    roleRef:
      apiGroup: apiGroupValue
      kind: kindValue
      name: nameValue
    subjects:
    - apiGroup: apiGroupValue
      kind: kindValue
      name: nameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.json

            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "subjects": [
        {
          "kind": "kindValue",
          "apiGroup": "apiGroupValue",
          "name": "nameValue",
          "namespace": "namespaceValue"
        }
      ],
      "roleRef": {
        "apiGroup": "apiGroupValue",
        "kind": "kindValue",
        "name": "nameValue"
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/rbac.authorization.k8s.io.v1.ClusterRoleBinding.json

            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "subjects": [
        {
          "kind": "kindValue",
          "apiGroup": "apiGroupValue",
          "name": "nameValue",
          "namespace": "namespaceValue"
        }
      ],
      "roleRef": {
        "apiGroup": "apiGroupValue",
        "kind": "kindValue",
        "name": "nameValue"
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. pkg/registry/admissionregistration/validatingadmissionpolicy/authz.go

    	}
    
    	paramKind := policy.Spec.ParamKind
    	// default to requiring permissions on all group/version/resources
    	resource, apiGroup, apiVersion := "*", "*", "*"
    	if gv, err := schema.ParseGroupVersion(paramKind.APIVersion); err == nil {
    		// we only need to authorize the parsed group/version
    		apiGroup = gv.Group
    		apiVersion = gv.Version
    		if gvr, err := v.resourceResolver.Resolve(gv.WithKind(paramKind.Kind)); err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:29:56 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis_openapi.json

    {
      "components": {
        "schemas": {
          "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup": {
            "description": "APIGroup contains the name, the supported versions, and the preferred version of a group.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1beta1/types.go

    	Kind string `json:"kind" protobuf:"bytes,1,opt,name=kind"`
    	// APIGroup holds the API group of the referenced subject.
    	// Defaults to "" for ServiceAccount subjects.
    	// Defaults to "rbac.authorization.k8s.io" for User and Group subjects.
    	// +optional
    	APIGroup string `json:"apiGroup,omitempty" protobuf:"bytes,2,opt,name=apiGroup"`
    	// Name of the object being referenced.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. manifests/charts/istio-cni/templates/clusterrolebinding.yaml

        istio.io/rev: {{ .Values.revision | default "default" }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Cni"
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: {{ template "name" . }}
    subjects:
    - kind: ServiceAccount
      name: {{ template "name" . }}
      namespace: {{ .Release.Namespace }}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top