Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 219 for apiGroup (0.19 sec)

  1. common-protos/k8s.io/api/resource/v1alpha2/generated.proto

    // namespace as the ResourceClaim.
    message ResourceClaimConsumerReference {
      // APIGroup is the group for the resource being referenced. It is
      // empty for the core API. This matches the group in the APIVersion
      // that is used when creating the resources.
      // +optional
      optional string apiGroup = 1;
    
      // Resource is the type of resource being referenced, for example "pods".
      optional string resource = 3;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/upgrade/1.11.0-beta.1-cni-install.yaml.tar

    - apiGroups: [""] resources: ["events"] verbs: ["get", "list", "watch", "delete", "patch", "update", "create" ] --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: name: istio-cni labels: app: istio-cni release: istio istio.io/rev: default install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Cni" roleRef: apiGroup: rbac.authorization.k8s.io kind: ClusterRole name: istio-cni subjects: - kind: ServiceAccount name: istio-cni namespace: kube-system...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 10K bytes
    - Viewed (0)
  3. pkg/apis/resource/validation/validation.go

    	if ref == nil {
    		return allErrs
    	}
    
    	// group is required but the Core group is the empty value, so it can not be enforced.
    	if ref.APIGroup != "" {
    		for _, msg := range utilvalidation.IsDNS1123Subdomain(ref.APIGroup) {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("apiGroup"), ref.APIGroup, msg))
    		}
    	}
    
    	if ref.Kind == "" {
    		allErrs = append(allErrs, field.Required(fldPath.Child("kind"), ""))
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    	rdm.lock.Lock()
    	defer rdm.lock.Unlock()
    
    	key := groupKey{
    		source: source,
    		name:   apiGroup.Group,
    	}
    
    	group, exists := rdm.apiGroups[key]
    	if !exists {
    		return
    	}
    
    	modified := false
    	for i := range group.Versions {
    		if group.Versions[i].Version == apiGroup.Version {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. pkg/apis/rbac/v1alpha1/zz_generated.conversion.go

    	return autoConvert_rbac_RoleList_To_v1alpha1_RoleList(in, out, s)
    }
    
    func autoConvert_v1alpha1_RoleRef_To_rbac_RoleRef(in *v1alpha1.RoleRef, out *rbac.RoleRef, s conversion.Scope) error {
    	out.APIGroup = in.APIGroup
    	out.Kind = in.Kind
    	out.Name = in.Name
    	return nil
    }
    
    // Convert_v1alpha1_RoleRef_To_rbac_RoleRef is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 23.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_test.go

    			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 {
    			// API groups return APIGroup
    			group := metav1.APIGroup{}
    			err = json.Unmarshal(body, &group)
    			if err != nil {
    				t.Errorf("[%d] unexpected error parsing json body at path %q: %v", i, path, err)
    				continue
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/zz_generated.conversion.go

    	out.Resource = in.Resource
    	out.Namespace = in.Namespace
    	out.Name = in.Name
    	out.UID = types.UID(in.UID)
    	out.APIGroup = in.APIGroup
    	out.APIVersion = in.APIVersion
    	out.ResourceVersion = in.ResourceVersion
    	out.Subresource = in.Subresource
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 06 19:08:27 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/audit/policy/checker_test.go

    			Verb:            "get",
    			Namespace:       "default",
    			APIGroup:        "", // Core
    			APIVersion:      "v1",
    			Resource:        "pods",
    			Name:            "busybox",
    			ResourceRequest: true,
    			Path:            "/api/v1/namespaces/default/pods/busybox",
    		},
    		"cluster": &authorizer.AttributesRecord{
    			User:            tim,
    			Verb:            "get",
    			APIGroup:        "rbac.authorization.k8s.io", // Core
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 12 15:06:14 UTC 2021
    - 15.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    	"":         "ResourceClaimConsumerReference contains enough information to let you locate the consumer of a ResourceClaim. The user must be a resource in the same namespace as the ResourceClaim.",
    	"apiGroup": "APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  10. plugin/pkg/admission/gc/gc_admission.go

    		deleteAttributes := authorizer.AttributesRecord{
    			User:            attributes.GetUserInfo(),
    			Verb:            "delete",
    			Namespace:       attributes.GetNamespace(),
    			APIGroup:        attributes.GetResource().Group,
    			APIVersion:      attributes.GetResource().Version,
    			Resource:        attributes.GetResource().Resource,
    			Subresource:     attributes.GetSubresource(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top