Skip to content

Commit

Permalink
fixed the missing flag assignmenets
Browse files Browse the repository at this point in the history
Signed-off-by: Dipankar Das <[email protected]>
  • Loading branch information
dipankardas011 committed Aug 1, 2024
1 parent 52870d7 commit 1056b7b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cli/cmd/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ func verboseFlags() {
deleteClusterHAAzure.Flags().IntP("verbose", "v", 0, msgVerbose)
deleteClusterHACivo.Flags().IntP("verbose", "v", 0, msgVerbose)
deleteClusterHAAws.Flags().IntP("verbose", "v", 0, msgVerbose)
deleteClusterAws.Flags().IntP("verbose", "v", 0, msgVerbose)
deleteClusterLocal.Flags().IntP("verbose", "v", 0, msgVerbose)

addMoreWorkerNodesHAAzure.Flags().IntP("verbose", "v", 0, msgVerbose)
Expand All @@ -34,6 +35,7 @@ func verboseFlags() {
infoClusterCmd.Flags().IntP("verbose", "v", 0, msgVerbose)

createClusterAzure.Flags().BoolP("yes", "y", true, msgApproval)
createClusterAws.Flags().BoolP("yes", "y", true, msgApproval)
createClusterCivo.Flags().BoolP("yes", "y", true, msgApproval)
createClusterLocal.Flags().BoolP("yes", "y", true, msgApproval)
createClusterHACivo.Flags().BoolP("yes", "y", true, msgApproval)
Expand Down

0 comments on commit 1056b7b

Please sign in to comment.