add create clusterrolebinding command

This commit is contained in:
deads2k
2016-11-18 11:23:59 -05:00
parent 47cf64e9c5
commit e300f01a1b
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
}