add missing command

This commit is contained in:
Jeffrey Regan 2018-02-02 12:44:40 -08:00
parent c8be5e44f5
commit d0c6b236d6
1 changed files with 1 additions and 0 deletions

View File

@ -28,6 +28,7 @@ import (
func main() {
var cmd = &cobra.Command{}
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.NewCmdAddConfigMap(os.Stderr))
cmd.AddCommand(commands.NewCmdAddSecret(os.Stderr))