Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 79 for PolicyRule (0.15 sec)

  1. staging/src/k8s.io/api/rbac/v1beta1/generated.pb.go

    var xxx_messageInfo_ClusterRoleList proto.InternalMessageInfo
    
    func (m *PolicyRule) Reset()      { *m = PolicyRule{} }
    func (*PolicyRule) ProtoMessage() {}
    func (*PolicyRule) Descriptor() ([]byte, []int) {
    	return fileDescriptor_c5bc2d145acd4e45, []int{5}
    }
    func (m *PolicyRule) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *PolicyRule) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/rbac/v1alpha1/generated.pb.go

    var xxx_messageInfo_ClusterRoleList proto.InternalMessageInfo
    
    func (m *PolicyRule) Reset()      { *m = PolicyRule{} }
    func (*PolicyRule) ProtoMessage() {}
    func (*PolicyRule) Descriptor() ([]byte, []int) {
    	return fileDescriptor_758889dfd9a88fa6, []int{5}
    }
    func (m *PolicyRule) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *PolicyRule) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/rbac/v1alpha1/generated.proto

      // Items is a list of ClusterRoles
      repeated ClusterRole items = 2;
    }
    
    // PolicyRule holds information that describes a policy rule, but does not contain information
    // about who the rule applies to or which namespace the rule applies to.
    message PolicyRule {
      // Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/rbac/v1beta1/generated.proto

      // Items is a list of ClusterRoles
      repeated ClusterRole items = 2;
    }
    
    // PolicyRule holds information that describes a policy rule, but does not contain information
    // about who the rule applies to or which namespace the rule applies to.
    message PolicyRule {
      // Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.pb.go

    var xxx_messageInfo_PolicyList proto.InternalMessageInfo
    
    func (m *PolicyRule) Reset()      { *m = PolicyRule{} }
    func (*PolicyRule) ProtoMessage() {}
    func (*PolicyRule) Descriptor() ([]byte, []int) {
    	return fileDescriptor_62937bb89ca7b6dd, []int{6}
    }
    func (m *PolicyRule) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *PolicyRule) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 81.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/rbac/v1/types.go

    // 2. evaluation of RoleBindings in the namespace requested - short circuit on match
    // 3. deny by default
    
    // PolicyRule holds information that describes a policy rule, but does not contain information
    // about who the rule applies to or which namespace the rule applies to.
    type PolicyRule struct {
    	// Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
    	// +listType=atomic
    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. staging/src/k8s.io/api/rbac/v1alpha1/types.go

    // 2. evaluation of RoleBindings in the namespace requested - short circuit on match
    // 3. deny by default
    
    // PolicyRule holds information that describes a policy rule, but does not contain information
    // about who the rule applies to or which namespace the rule applies to.
    type PolicyRule struct {
    	// Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/rbac/rbac_test.go

    func newRule(verbs, apiGroups, resources, nonResourceURLs string) rbacv1.PolicyRule {
    	return rbacv1.PolicyRule{
    		Verbs:           strings.Split(verbs, ","),
    		APIGroups:       strings.Split(apiGroups, ","),
    		Resources:       strings.Split(resources, ","),
    		NonResourceURLs: strings.Split(nonResourceURLs, ","),
    	}
    }
    
    func newRole(name, namespace string, rules ...rbacv1.PolicyRule) *rbacv1.Role {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 21.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/bootstraptoken/node/tlsbootstrap_test.go

    		{
    			name: "RBAC rules already exists",
    			client: newMockRbacClientForTest(t, &rbac.ClusterRole{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: constants.GetNodesClusterRoleName,
    				},
    				Rules: []rbac.PolicyRule{
    					{
    						Verbs:     []string{"get"},
    						APIGroups: []string{""},
    						Resources: []string{"nodes"},
    					},
    				},
    			}, &rbac.ClusterRoleBinding{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 04:16:31 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/rbac/v1beta1/types.go

    // 2. evaluation of RoleBindings in the namespace requested - short circuit on match
    // 3. deny by default
    
    // PolicyRule holds information that describes a policy rule, but does not contain information
    // about who the rule applies to or which namespace the rule applies to.
    type PolicyRule struct {
    	// Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top