Skip to content

Commit

Permalink
move flagUser/Pass to install cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
colesnodgrass committed May 9, 2024
1 parent c2d7615 commit 20d8508
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 0 additions & 4 deletions internal/cmd/local/local.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ var telClient telemetry.Client
var provider k8s.Provider

var (
// TODO: move to NewCmdInstall
flagUsername string
// TODO: move to NewCmdInstall
flagPassword string
// TODO: move to NewCmdLocal
flagPort int
)
Expand Down
6 changes: 5 additions & 1 deletion internal/cmd/local/local_install.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ const (
func NewCmdInstall() *cobra.Command {
spinner := &pterm.DefaultSpinner

var flagHelmChartVersion string
var (
flagHelmChartVersion string
flagUsername string
flagPassword string
)

cmd := &cobra.Command{
Use: "install",
Expand Down

0 comments on commit 20d8508

Please sign in to comment.