Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 210 for clusterRoles (0.17 sec)

  1. staging/src/k8s.io/api/rbac/v1beta1/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.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/rbac/v1/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: Mon Apr 24 20:35:20 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. pkg/registry/rbac/escalation_check.go

    		Verb: "bind",
    		// check against the namespace where the binding is being created (or the empty namespace for clusterrolebindings).
    		// this allows delegation to bind particular clusterroles in rolebindings within particular namespaces,
    		// and to authorize binding a clusterrole across all namespaces in a clusterrolebinding.
    		Namespace:       bindingNamespace,
    		ResourceRequest: true,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/rbac/rbac_test.go

    	bootstrapBindings = append(bootstrapBindings, bootstrappolicy.ControllerRoleBindings()...)
    
    	clusterRoles := []*rbacv1.ClusterRole{}
    	for i := range bootstrapRoles {
    		clusterRoles = append(clusterRoles, &bootstrapRoles[i])
    	}
    	clusterRoleBindings := []*rbacv1.ClusterRoleBinding{}
    	for i := range bootstrapBindings {
    		clusterRoleBindings = append(clusterRoleBindings, &bootstrapBindings[i])
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 21.1K bytes
    - Viewed (0)
  5. common-protos/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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. pkg/registry/rbac/rest/storage_rbac_test.go

    	"k8s.io/kubernetes/plugin/pkg/auth/authorizer/rbac/bootstrappolicy"
    )
    
    func BenchmarkEnsureRBACPolicy(b *testing.B) {
    	for n := 0; n < b.N; n++ {
    		var policy = &PolicyData{
    			ClusterRoles:               append(bootstrappolicy.ClusterRoles(), bootstrappolicy.ControllerRoles()...),
    			ClusterRoleBindings:        append(bootstrappolicy.ClusterRoleBindings(), bootstrappolicy.ControllerRoleBindings()...),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 02 03:03:06 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/rbac/v1alpha1/types.go

    }
    
    // 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.
    	// 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 22:49:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. pkg/registry/rbac/clusterrole/storage/storage.go

    		NewListFunc:               func() runtime.Object { return &rbac.ClusterRoleList{} },
    		DefaultQualifiedResource:  rbac.Resource("clusterroles"),
    		SingularQualifiedResource: rbac.Resource("clusterrole"),
    
    		CreateStrategy: clusterrole.Strategy,
    		UpdateStrategy: clusterrole.Strategy,
    		DeleteStrategy: clusterrole.Strategy,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1/types.go

    }
    
    // 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.
    	// 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 May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. pkg/registry/rbac/clusterrole/strategy.go

    	_ = obj.(*rbac.ClusterRole)
    }
    
    // PrepareForUpdate clears fields that are not allowed to be set by end users on update.
    func (strategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
    	newClusterRole := obj.(*rbac.ClusterRole)
    	oldClusterRole := old.(*rbac.ClusterRole)
    
    	_, _ = newClusterRole, oldClusterRole
    }
    
    // Validate validates a new ClusterRole. Validation must check for a correct signature.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
Back to top