Add kubectl create configmap

This commit is contained in:
Paul Morie
2016-02-18 21:24:21 -05:00
parent be803eaf64
commit 51a9c2c9ba
11 changed files with 732 additions and 41 deletions

View File

@@ -78,6 +78,7 @@ func NewCmdCreate(f *cmdutil.Factory, out io.Writer) *cobra.Command {
// create subcommands
cmd.AddCommand(NewCmdCreateNamespace(f, out))
cmd.AddCommand(NewCmdCreateSecret(f, out))
cmd.AddCommand(NewCmdCreateConfigMap(f, out))
return cmd
}