From d18777bed477a3372bede91a3e4bc3f26f3dd0c5 Mon Sep 17 00:00:00 2001 From: Vishal Date: Thu, 13 Sep 2018 15:27:22 +0530 Subject: [PATCH] Used hidden flag instead of removing command completely (#886) The `fission spec helm` is now a hidden command since it is not implemented yet. --- fission/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fission/main.go b/fission/main.go index 5fd29237..fbf7e5c6 100644 --- a/fission/main.go +++ b/fission/main.go @@ -300,7 +300,7 @@ func main() { {Name: "validate", Usage: "Validate Fission app specification", Flags: []cli.Flag{specDirFlag}, Action: specValidate}, {Name: "apply", Usage: "Create, update, or delete Fission resources from app specification", Flags: []cli.Flag{specDirFlag, specDeleteFlag, specWaitFlag, specWatchFlag}, Action: specApply}, {Name: "destroy", Usage: "Delete all Fission resources in the app specification", Flags: []cli.Flag{specDirFlag}, Action: specDestroy}, - {Name: "helm", Usage: "Create a helm chart from the app specification", Flags: []cli.Flag{specDirFlag}, Action: specHelm}, + {Name: "helm", Usage: "Create a helm chart from the app specification", Flags: []cli.Flag{specDirFlag}, Action: specHelm, Hidden: true}, } app.Commands = []cli.Command{