Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for clusterRoleBindings (0.58 sec)

  1. 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)
  2. 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)
  3. pkg/controlplane/storageversionhashdata/data.go

    	"node.k8s.io/v1/runtimeclasses":                                     "WQTu1GL3T2Q=",
    	"policy/v1/poddisruptionbudgets":                                    "EVWiDmWqyJw=",
    	"rbac.authorization.k8s.io/v1/clusterrolebindings":                  "48tpQ8gZHFc=",
    	"rbac.authorization.k8s.io/v1/clusterroles":                         "bYE5ZWDrJ44=",
    	"rbac.authorization.k8s.io/v1/rolebindings":                         "eGsCzGH6b1g=",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    	err = wait.PollUntilContextTimeout(
    		ctx,
    		retryInterval,
    		retryTimeout,
    		true, func(ctx context.Context) (bool, error) {
    			if _, err := adminClient.RbacV1().ClusterRoleBindings().Create(
    				ctx,
    				clusterRoleBinding,
    				metav1.CreateOptions{},
    			); err != nil {
    				if apierrors.IsForbidden(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/addons/dns/dns.go

    		return errors.Wrapf(err, "%s ClusterRoleBinding", unableToDecodeCoreDNS)
    	}
    
    	// Create the Clusterrolebindings for CoreDNS or update it in case it already exists
    	if err := apiclient.CreateOrUpdateClusterRoleBinding(client, coreDNSClusterRolesBinding); err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. istioctl/pkg/precheck/precheck.go

    		},
    		{
    			group:    "rbac.authorization.k8s.io",
    			version:  "v1",
    			resource: "clusterroles",
    		},
    		{
    			group:    "rbac.authorization.k8s.io",
    			version:  "v1",
    			resource: "clusterrolebindings",
    		},
    		{
    			group:    "apiextensions.k8s.io",
    			version:  "v1",
    			resource: "customresourcedefinitions",
    		},
    		{
    			namespace: istioNamespace,
    			group:     "rbac.authorization.k8s.io",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/constants/constants.go

    	// SchedulerKubeConfigFileName defines the file name for the scheduler's kubeconfig file
    	SchedulerKubeConfigFileName = "scheduler.conf"
    
    	// Some well-known users, groups, roles and clusterrolebindings in the core Kubernetes authorization system
    
    	// ControllerManagerUser defines the well-known user the controller-manager should be authenticated as
    	ControllerManagerUser = "system:kube-controller-manager"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    	return common.OpenAPIDefinition{
    		Schema: spec.Schema{
    			SchemaProps: spec.SchemaProps{
    				Description: "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:        []string{"object"},
    				Properties: map[string]spec.Schema{
    					"kind": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  9. api/openapi-spec/swagger.json

              "version": "v1"
            }
          ]
        },
        "io.k8s.api.rbac.v1.ClusterRoleBindingList": {
          "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top