From 466001a7fec68e05c7d4474536aadc91af0dee20 Mon Sep 17 00:00:00 2001 From: Jordan Pellizzari Date: Wed, 28 Jul 2021 14:28:28 -0700 Subject: [PATCH] Remove source-type CLI arg (#538) --- cmd/wego/app/add/cmd.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cmd/wego/app/add/cmd.go b/cmd/wego/app/add/cmd.go index 14e70bff53..d533d40b7b 100644 --- a/cmd/wego/app/add/cmd.go +++ b/cmd/wego/app/add/cmd.go @@ -57,7 +57,6 @@ func init() { Cmd.Flags().StringVar(¶ms.Path, "path", "./", "Path of files within git repository") Cmd.Flags().StringVar(¶ms.Branch, "branch", "main", "Branch to watch within git repository") Cmd.Flags().StringVar(¶ms.DeploymentType, "deployment-type", "kustomize", "deployment type [kustomize, helm]") - Cmd.Flags().StringVar(¶ms.SourceType, "source-type", "git", "source type [git, helm]") Cmd.Flags().StringVar(¶ms.Chart, "chart", "", "Specify chart for helm source") Cmd.Flags().StringVar(¶ms.PrivateKey, "private-key", "", "Private key to access git repository over ssh") Cmd.Flags().StringVar(¶ms.AppConfigUrl, "app-config-url", "", "URL of external repository (if any) which will hold automation manifests; NONE to store only in the cluster")