Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 210 for clusterRoles (0.16 sec)

  1. pkg/controller/clusterroleaggregation/clusterroleaggregation_controller.go

    	clusterRole := sharedClusterRole.DeepCopy()
    	clusterRole.Rules = nil
    	for _, rule := range newPolicyRules {
    		clusterRole.Rules = append(clusterRole.Rules, *rule.DeepCopy())
    	}
    	_, err := c.clusterRoleClient.ClusterRoles().Update(ctx, clusterRole, metav1.UpdateOptions{})
    	return err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/rbac/subject_locator_test.go

    		roles               []*rbacv1.Role
    		roleBindings        []*rbacv1.RoleBinding
    		clusterRoles        []*rbacv1.ClusterRole
    		clusterRoleBindings []*rbacv1.ClusterRoleBinding
    
    		superUser string
    
    		actionsToSubjects []actionToSubjects
    	}{
    		{
    			name: "no super user, star matches star",
    			clusterRoles: []*rbacv1.ClusterRole{
    				newClusterRole("admin", newRule("*", "*", "*", "*")),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 22 12:17:05 UTC 2018
    - 5.6K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/rbac/v1beta1/generated.proto

    }
    
    // ClusterRoleList is a collection of ClusterRoles.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoles, and will no longer be served in v1.22.
    message ClusterRoleList {
      // Standard object's metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of ClusterRoles
      repeated ClusterRole items = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. pkg/registry/rbac/rest/storage_rbac.go

    }
    
    type PolicyData struct {
    	ClusterRoles        []rbacapiv1.ClusterRole
    	ClusterRoleBindings []rbacapiv1.ClusterRoleBinding
    	Roles               map[string][]rbacapiv1.Role
    	RoleBindings        map[string][]rbacapiv1.RoleBinding
    	// ClusterRolesToAggregate maps from previous clusterrole name to the new clusterrole name
    	ClusterRolesToAggregate map[string]string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 14 03:25:19 UTC 2022
    - 18.5K bytes
    - Viewed (0)
  5. pkg/apis/rbac/types.go

    	// If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be
    	// stomped by the controller.
    	AggregationRule *AggregationRule
    }
    
    // AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole
    type AggregationRule struct {
    	// ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 20:35:20 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/rbac/v1alpha1/types_swagger_doc_generated.go

    var map_AggregationRule = map[string]string{
    	"":                     "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole",
    	"clusterRoleSelectors": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added",
    }
    
    func (AggregationRule) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/rbac/v1beta1/generated.proto

    }
    
    // ClusterRoleList is a collection of ClusterRoles.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoles, and will no longer be served in v1.22.
    message ClusterRoleList {
      // Standard object's metadata.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of ClusterRoles
      repeated ClusterRole items = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/rbac/v1alpha1/generated.proto

    }
    
    // ClusterRoleList is a collection of ClusterRoles.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoles, and will no longer be served in v1.22.
    message ClusterRoleList {
      // Standard object's metadata.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of ClusterRoles
      repeated ClusterRole items = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1/generated.proto

    option go_package = "k8s.io/api/rbac/v1";
    
    // AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole
    message AggregationRule {
      // ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules.
      // If any of the selectors match, then the ClusterRole's permissions will be added
      // +optional
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/rbac/v1alpha1/generated.proto

    }
    
    // ClusterRoleList is a collection of ClusterRoles.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoles, and will no longer be served in v1.22.
    message ClusterRoleList {
      // Standard object's metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of ClusterRoles
      repeated ClusterRole items = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top