Merge pull request #37098 from deads2k/cli-12-create-cbinding

Automatic merge from submit-queue

add create clusterrolebinding command

Adds `kubectl create clusterrolebinding`.

@kubernetes/sig-cli
This commit is contained in:
Kubernetes Submit Queue
2016-12-02 08:44:58 -08:00
committed by GitHub
10 changed files with 236 additions and 0 deletions

View File

@@ -87,6 +87,7 @@ func NewCmdCreate(f cmdutil.Factory, out, errOut io.Writer) *cobra.Command {
cmd.AddCommand(NewCmdCreateServiceAccount(f, out))
cmd.AddCommand(NewCmdCreateService(f, out, errOut))
cmd.AddCommand(NewCmdCreateDeployment(f, out))
cmd.AddCommand(NewCmdCreateClusterRoleBinding(f, out))
return cmd
}