mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-10-31 18:28:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			100 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			100 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
| Copyright 2016 The Kubernetes Authors.
 | |
| 
 | |
| Licensed under the Apache License, Version 2.0 (the "License");
 | |
| you may not use this file except in compliance with the License.
 | |
| You may obtain a copy of the License at
 | |
| 
 | |
|     http://www.apache.org/licenses/LICENSE-2.0
 | |
| 
 | |
| Unless required by applicable law or agreed to in writing, software
 | |
| distributed under the License is distributed on an "AS IS" BASIS,
 | |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
| See the License for the specific language governing permissions and
 | |
| limitations under the License.
 | |
| */
 | |
| 
 | |
| package create
 | |
| 
 | |
| import (
 | |
| 	"github.com/spf13/cobra"
 | |
| 
 | |
| 	"k8s.io/kubernetes/pkg/kubectl"
 | |
| 	"k8s.io/kubernetes/pkg/kubectl/cmd/templates"
 | |
| 	cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
 | |
| 	"k8s.io/kubernetes/pkg/kubectl/genericclioptions"
 | |
| 	"k8s.io/kubernetes/pkg/kubectl/util/i18n"
 | |
| )
 | |
| 
 | |
| var (
 | |
| 	clusterRoleBindingLong = templates.LongDesc(i18n.T(`
 | |
| 		Create a ClusterRoleBinding for a particular ClusterRole.`))
 | |
| 
 | |
| 	clusterRoleBindingExample = templates.Examples(i18n.T(`
 | |
| 		  # Create a ClusterRoleBinding for user1, user2, and group1 using the cluster-admin ClusterRole
 | |
| 		  kubectl create clusterrolebinding cluster-admin --clusterrole=cluster-admin --user=user1 --user=user2 --group=group1`))
 | |
| )
 | |
| 
 | |
| type ClusterRoleBindingOpts struct {
 | |
| 	CreateSubcommandOptions *CreateSubcommandOptions
 | |
| }
 | |
| 
 | |
| // ClusterRoleBinding is a command to ease creating ClusterRoleBindings.
 | |
| func NewCmdCreateClusterRoleBinding(f cmdutil.Factory, ioStreams genericclioptions.IOStreams) *cobra.Command {
 | |
| 	options := &ClusterRoleBindingOpts{
 | |
| 		CreateSubcommandOptions: NewCreateSubcommandOptions(ioStreams),
 | |
| 	}
 | |
| 
 | |
| 	cmd := &cobra.Command{
 | |
| 		Use: "clusterrolebinding NAME --clusterrole=NAME [--user=username] [--group=groupname] [--serviceaccount=namespace:serviceaccountname] [--dry-run]",
 | |
| 		DisableFlagsInUseLine: true,
 | |
| 		Short:   i18n.T("Create a ClusterRoleBinding for a particular ClusterRole"),
 | |
| 		Long:    clusterRoleBindingLong,
 | |
| 		Example: clusterRoleBindingExample,
 | |
| 		Run: func(cmd *cobra.Command, args []string) {
 | |
| 			cmdutil.CheckErr(options.Complete(cmd, args))
 | |
| 			cmdutil.CheckErr(options.Run(f))
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	options.CreateSubcommandOptions.PrintFlags.AddFlags(cmd)
 | |
| 
 | |
| 	cmdutil.AddApplyAnnotationFlags(cmd)
 | |
| 	cmdutil.AddValidateFlags(cmd)
 | |
| 	cmdutil.AddGeneratorFlags(cmd, cmdutil.ClusterRoleBindingV1GeneratorName)
 | |
| 	cmd.Flags().String("clusterrole", "", i18n.T("ClusterRole this ClusterRoleBinding should reference"))
 | |
| 	cmd.MarkFlagCustom("clusterrole", "__kubectl_get_resource_clusterrole")
 | |
| 	cmd.Flags().StringArray("user", []string{}, "Usernames to bind to the role")
 | |
| 	cmd.Flags().StringArray("group", []string{}, "Groups to bind to the role")
 | |
| 	cmd.Flags().StringArray("serviceaccount", []string{}, "Service accounts to bind to the role, in the format <namespace>:<name>")
 | |
| 	return cmd
 | |
| }
 | |
| 
 | |
| func (o *ClusterRoleBindingOpts) Complete(cmd *cobra.Command, args []string) error {
 | |
| 	name, err := NameFromCommandArgs(cmd, args)
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	var generator kubectl.StructuredGenerator
 | |
| 	switch generatorName := cmdutil.GetFlagString(cmd, "generator"); generatorName {
 | |
| 	case cmdutil.ClusterRoleBindingV1GeneratorName:
 | |
| 		generator = &kubectl.ClusterRoleBindingGeneratorV1{
 | |
| 			Name:            name,
 | |
| 			ClusterRole:     cmdutil.GetFlagString(cmd, "clusterrole"),
 | |
| 			Users:           cmdutil.GetFlagStringArray(cmd, "user"),
 | |
| 			Groups:          cmdutil.GetFlagStringArray(cmd, "group"),
 | |
| 			ServiceAccounts: cmdutil.GetFlagStringArray(cmd, "serviceaccount"),
 | |
| 		}
 | |
| 	default:
 | |
| 		return errUnsupportedGenerator(cmd, generatorName)
 | |
| 	}
 | |
| 
 | |
| 	return o.CreateSubcommandOptions.Complete(cmd, args, generator)
 | |
| }
 | |
| 
 | |
| // CreateClusterRoleBinding is the implementation of the create clusterrolebinding command.
 | |
| func (o *ClusterRoleBindingOpts) Run(f cmdutil.Factory) error {
 | |
| 	return RunCreateSubcommand(f, o.CreateSubcommandOptions)
 | |
| }
 | 
