Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 251 for apiGroup (0.15 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.APIGroup.yaml

    apiVersion: v1
    kind: APIGroup
    name: nameValue
    preferredVersion:
      groupVersion: groupVersionValue
      version: versionValue
    serverAddressByClientCIDRs:
    - clientCIDR: clientCIDRValue
      serverAddress: serverAddressValue
    versions:
    - groupVersion: groupVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 284 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.APIGroup.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 411 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.APIGroup.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 146 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width_test.go

    				APIGroup: "foo.bar",
    				Resource: "events",
    			},
    			counts: map[string]int64{
    				"events.foo.bar": 399,
    			},
    			maxSeats:             10,
    			initialSeatsExpected: 8,
    		},
    		{
    			name:       "request verb is list, no query parameters, count not known",
    			requestURI: "http://server/apis/foo.bar/v1/events",
    			requestInfo: &apirequest.RequestInfo{
    				Verb:     "list",
    				APIGroup: "foo.bar",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. pkg/registry/batch/job/storage/storage_test.go

    			deleteOptions: &metav1.DeleteOptions{},
    			requestInfo:   &genericapirequest.RequestInfo{APIGroup: "batch", APIVersion: "v1"},
    		},
    		{
    			description:   "deletion: no policy, v2, no warning",
    			expectWarning: false,
    			deleteOptions: &metav1.DeleteOptions{},
    			requestInfo:   &genericapirequest.RequestInfo{APIGroup: "batch", APIVersion: "v2"},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/rbac/v1/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 May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/api/persistentvolumeclaim/util_test.go

    	podKind      = "Pod"
    )
    
    func makeDataSource(apiGroup, kind, name string) *core.TypedLocalObjectReference {
    	return &core.TypedLocalObjectReference{
    		APIGroup: &apiGroup,
    		Kind:     kind,
    		Name:     name,
    	}
    }
    
    func makeDataSourceRef(apiGroup, kind, name string, namespace *string) *core.TypedObjectReference {
    	return &core.TypedObjectReference{
    		APIGroup:  &apiGroup,
    		Kind:      kind,
    		Name:      name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top