Merge pull request #245 from monopole/addcommand

add missing command
This commit is contained in:
Jeff Regan 2018-02-02 12:58:04 -08:00 committed by GitHub
commit c3304c118d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -28,6 +28,7 @@ import (
func main() { func main() {
var cmd = &cobra.Command{} var cmd = &cobra.Command{}
cmd.AddCommand(commands.NewCmdInflate(os.Stdout, os.Stderr)) cmd.AddCommand(commands.NewCmdInflate(os.Stdout, os.Stderr))
cmd.AddCommand(commands.NewCmdAddResource(os.Stdout, os.Stderr, fs.MakeRealFS()))
cmd.AddCommand(commands.NewCmdInit(os.Stdout, os.Stderr, fs.MakeRealFS())) cmd.AddCommand(commands.NewCmdInit(os.Stdout, os.Stderr, fs.MakeRealFS()))
cmd.AddCommand(commands.NewCmdAddConfigMap(os.Stderr)) cmd.AddCommand(commands.NewCmdAddConfigMap(os.Stderr))
cmd.AddCommand(commands.NewCmdAddSecret(os.Stderr)) cmd.AddCommand(commands.NewCmdAddSecret(os.Stderr))