Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 60 for clusterRoleBindings (0.29 sec)

  1. tests/integration/create_cluster_gke.sh

      --no-enable-legacy-authorization
    
    # This is a hack to handle the case where clusterrolebinding creation returns:
    #
    # Error from server (Forbidden): clusterrolebindings.rbac.authorization.k8s.io is forbidden: User "client" cannot
    # create clusterrolebindings.rbac.authorization.k8s.io at the cluster scope
    gcloud config set container/use_client_certificate False
    
    # Download the credentials for the cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 12 16:02:51 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    				client.PrependReactor("create", "clusterrolebindings", func(action clientgotesting.Action) (bool, runtime.Object, error) {
    					return true, nil, apierrors.NewAlreadyExists(
    						schema.GroupResource{}, "name")
    				})
    			},
    			setupSuperAdminClient: func(client *clientsetfake.Clientset) {
    				client.PrependReactor("create", "clusterrolebindings", func(action clientgotesting.Action) (bool, runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. api/discovery/apis__rbac.authorization.k8s.io__v1.json

    {
      "apiVersion": "v1",
      "groupVersion": "rbac.authorization.k8s.io/v1",
      "kind": "APIResourceList",
      "resources": [
        {
          "kind": "ClusterRoleBinding",
          "name": "clusterrolebindings",
          "namespaced": false,
          "singularName": "clusterrolebinding",
          "storageVersionHash": "48tpQ8gZHFc=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/rbac/v1alpha1/types.go

    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // ClusterRoleBindingList is a collection of ClusterRoleBindings.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBindings, and will no longer be served in v1.22.
    type ClusterRoleBindingList struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/rbac/v1/types.go

    // ClusterRoleBindingList is a collection of ClusterRoleBindings
    type ClusterRoleBindingList struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// +optional
    	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// Items is a list of ClusterRoleBindings
    	Items []ClusterRoleBinding `json:"items" protobuf:"bytes,2,rep,name=items"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/operator/output/operator-dump.json

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

    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // ClusterRoleBindingList is a collection of ClusterRoleBindings
    type ClusterRoleBindingList struct {
    	metav1.TypeMeta
    	// Standard object's metadata.
    	metav1.ListMeta
    
    	// Items is a list of ClusterRoleBindings
    	Items []ClusterRoleBinding
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 20:35:20 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. manifests/charts/istio-operator/templates/clusterrole.yaml

      verbs:
      - get
      - create
      - update
    - 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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/apiclient/init_dryrun.go

    // Need to handle these routes in a special manner:
    // - GET /default/services/kubernetes -- must return a valid Service
    // - GET /clusterrolebindings/system:nodes -- can safely return a NotFound error
    // - GET /nodes/<node-name> -- must return a valid Node
    // - ...all other, unknown GETs/LISTs will be logged
    type InitDryRunGetter struct {
    	controlPlaneName string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:50 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. pkg/registry/rbac/clusterrolebinding/storage/storage.go

    		NewFunc:                   func() runtime.Object { return &rbac.ClusterRoleBinding{} },
    		NewListFunc:               func() runtime.Object { return &rbac.ClusterRoleBindingList{} },
    		DefaultQualifiedResource:  rbac.Resource("clusterrolebindings"),
    		SingularQualifiedResource: rbac.Resource("clusterrolebinding"),
    
    		CreateStrategy: clusterrolebinding.Strategy,
    		UpdateStrategy: clusterrolebinding.Strategy,
    		DeleteStrategy: clusterrolebinding.Strategy,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 2K bytes
    - Viewed (0)
Back to top