Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 83 for ResourceNames (0.2 sec)

  1. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:certificates.k8s.io:kube-apiserver-client-approver
      rules:
      - apiGroups:
        - certificates.k8s.io
        resourceNames:
        - kubernetes.io/kube-apiserver-client
        resources:
        - signers
        verbs:
        - approve
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRole
      metadata:
        annotations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/rbac/v1/types.go

    	Resources []string `json:"resources,omitempty" protobuf:"bytes,3,rep,name=resources"`
    	// ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
    	// +optional
    	// +listType=atomic
    	ResourceNames []string `json:"resourceNames,omitempty" protobuf:"bytes,4,rep,name=resourceNames"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1alpha1/types.go

    	Resources []string `json:"resources,omitempty" protobuf:"bytes,4,rep,name=resources"`
    	// ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
    	// +optional
    	// +listType=atomic
    	ResourceNames []string `json:"resourceNames,omitempty" protobuf:"bytes,5,rep,name=resourceNames"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/zz_generated.conversion.go

    	out.Group = in.Group
    	out.Resources = *(*[]string)(unsafe.Pointer(&in.Resources))
    	out.ResourceNames = *(*[]string)(unsafe.Pointer(&in.ResourceNames))
    	return nil
    }
    
    // Convert_v1_GroupResources_To_audit_GroupResources is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 06 19:08:27 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/rbac/v1beta1/types.go

    	Resources []string `json:"resources,omitempty" protobuf:"bytes,3,rep,name=resources"`
    	// ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
    	// +optional
    	// +listType=atomic
    	ResourceNames []string `json:"resourceNames,omitempty" protobuf:"bytes,4,rep,name=resourceNames"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authorization/v1beta1/types.go

    	Resources []string `json:"resources,omitempty" protobuf:"bytes,3,rep,name=resources"`
    	// ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.  "*" means all.
    	// +optional
    	// +listType=atomic
    	ResourceNames []string `json:"resourceNames,omitempty" protobuf:"bytes,4,rep,name=resourceNames"`
    }
    
    // NonResourceRule holds information that describes a rule for the non-resource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/rbac/v1/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	if in.Resources != nil {
    		in, out := &in.Resources, &out.Resources
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.ResourceNames != nil {
    		in, out := &in.ResourceNames, &out.ResourceNames
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.NonResourceURLs != nil {
    		in, out := &in.NonResourceURLs, &out.NonResourceURLs
    		*out = make([]string, len(*in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authorization/v1/types.go

    	Resources []string `json:"resources,omitempty" protobuf:"bytes,3,rep,name=resources"`
    	// ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.  "*" means all.
    	// +optional
    	// +listType=atomic
    	ResourceNames []string `json:"resourceNames,omitempty" protobuf:"bytes,4,rep,name=resourceNames"`
    }
    
    // NonResourceRule holds information that describes a rule for the non-resource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. pkg/apis/authorization/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	if in.Resources != nil {
    		in, out := &in.Resources, &out.Resources
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.ResourceNames != nil {
    		in, out := &in.ResourceNames, &out.ResourceNames
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceRule.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    	// ResourceNames is a list of resource instance names that the policy matches.
    	// Using this field requires Resources to be specified.
    	// An empty list implies that every instance of the resource is matched.
    	// +optional
    	// +listType=atomic
    	ResourceNames []string `json:"resourceNames,omitempty" protobuf:"bytes,3,rep,name=resourceNames"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
Back to top