Add "create deployment" sub-command

This commit is contained in:
Angus Salkeld
2016-08-08 13:24:30 +10:00
parent 42ca885edb
commit bd0b7528b5
9 changed files with 421 additions and 0 deletions

View File

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