Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 245 for roleBindings (0.19 sec)

  1. operator/cmd/mesh/testdata/operator/output/operator-dump.json

                    "rbac.authorization.k8s.io"
                ],
                "resources": [
                    "clusterrolebindings",
                    "clusterroles",
                    "roles",
                    "rolebindings"
                ],
                "verbs": [
                    "*"
                ]
            },
            {
                "apiGroups": [
                    "coordination.k8s.io"
                ],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 01:35:08 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. pkg/registry/rbac/rest/storage_rbac_test.go

    			ClusterRoleBindings:        append(bootstrappolicy.ClusterRoleBindings(), bootstrappolicy.ControllerRoleBindings()...),
    			Roles:                      bootstrappolicy.NamespaceRoles(),
    			RoleBindings:               bootstrappolicy.NamespaceRoleBindings(),
    			ClusterRolesToAggregate:    bootstrappolicy.ClusterRolesToAggregate(),
    			ClusterRoleBindingsToSplit: bootstrappolicy.ClusterRoleBindingsToSplit(),
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 02 03:03:06 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  3. manifests/charts/istio-operator/templates/clusterrole.yaml

    - apiGroups:
      - policy
      resources:
      - poddisruptionbudgets
      verbs:
      - '*'
    - apiGroups:
      - rbac.authorization.k8s.io
      resources:
      - clusterrolebindings
      - clusterroles
      - roles
      - rolebindings
      verbs:
      - '*'
    - apiGroups:
      - coordination.k8s.io
      resources:
      - leases
      verbs:
      - get
      - create
      - update
    - apiGroups:
      - ""
      resources:
      - configmaps
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. pkg/registry/rbac/rolebinding/registry.go

    	Registry Registry
    }
    
    func (a AuthorizerAdapter) ListRoleBindings(namespace string) ([]*rbacv1.RoleBinding, error) {
    	list, err := a.Registry.ListRoleBindings(genericapirequest.WithNamespace(genericapirequest.NewContext(), namespace), &metainternalversion.ListOptions{})
    	if err != nil {
    		return nil, err
    	}
    
    	ret := []*rbacv1.RoleBinding{}
    	for i := range list.Items {
    		ret = append(ret, &list.Items[i])
    	}
    	return ret, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 22 12:17:05 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/apiclient/idempotency_test.go

    				client.PrependReactor("create", "rolebindings", func(clientgotesting.Action) (bool, runtime.Object, error) {
    					return true, nil, errors.New("unknown error")
    				})
    			},
    			expectedError: true,
    		},
    		{
    			name: "rolebinding exists, update it",
    			setupClient: func(client *clientsetfake.Clientset) {
    				client.PrependReactor("create", "rolebindings", func(clientgotesting.Action) (bool, runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. pkg/controlplane/storageversionhashdata/data.go

    	"rbac.authorization.k8s.io/v1/clusterrolebindings":                  "48tpQ8gZHFc=",
    	"rbac.authorization.k8s.io/v1/clusterroles":                         "bYE5ZWDrJ44=",
    	"rbac.authorization.k8s.io/v1/rolebindings":                         "eGsCzGH6b1g=",
    	"rbac.authorization.k8s.io/v1/roles":                                "7FuwZcIIItM=",
    	"scheduling.k8s.io/v1/priorityclasses":                              "1QwjyaZjj3Y=",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. pkg/registry/rbac/rolebinding/policybased/storage.go

    		return nil, errors.NewBadRequest("namespace is required")
    	}
    
    	roleBinding := obj.(*rbac.RoleBinding)
    	if rbacregistry.BindingAuthorized(ctx, roleBinding.RoleRef, namespace, s.authorizer) {
    		return s.StandardStorage.Create(ctx, obj, createValidation, options)
    	}
    
    	v1RoleRef := rbacv1.RoleRef{}
    	err := rbacv1helpers.Convert_rbac_RoleRef_To_v1_RoleRef(&roleBinding.RoleRef, &v1RoleRef, nil)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 10:11:16 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  8. samples/security/spire/README.md

    ## Tear down
    
    1.  Delete all deployments and configurations for the SPIRE Agent, Server, and namespace:
    
      ```bash
      $ kubectl delete namespace spire
      ```
    
    1.  Delete the ClusterRole, ClusterRoleBinding, Role, RoleBindings, ValidatingWebhookConfiguration, CSIDriver, and CustomResourceDefinition:
    
      ```bash
      $ kubectl delete clusterrole spire-server-cluster-role spire-agent-cluster-role manager-role
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/operator/output/operator-init.yaml

    - apiGroups:
      - policy
      resources:
      - poddisruptionbudgets
      verbs:
      - '*'
    - apiGroups:
      - rbac.authorization.k8s.io
      resources:
      - clusterrolebindings
      - clusterroles
      - roles
      - rolebindings
      verbs:
      - '*'
    - apiGroups:
      - coordination.k8s.io
      resources:
      - leases
      verbs:
      - get
      - create
      - update
    - apiGroups:
      - ""
      resources:
      - configmaps
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/bootstraptoken/clusterinfo/clusterinfo_test.go

    			},
    		},
    	}, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("error creating role: %v", err)
    	}
    
    	_, err = client.RbacV1().RoleBindings(metav1.NamespacePublic).Create(context.TODO(), &rbac.RoleBinding{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      BootstrapSignerClusterRoleName,
    			Namespace: metav1.NamespacePublic,
    		},
    		RoleRef: rbac.RoleRef{
    			APIGroup: rbac.GroupName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top