-
Notifications
You must be signed in to change notification settings - Fork 362
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bugfix: add auth flag for cluster scale #1489
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1489 +/- ##
==========================================
- Coverage 11.74% 11.67% -0.08%
==========================================
Files 76 76
Lines 6792 6833 +41
==========================================
Hits 798 798
- Misses 5892 5933 +41
Partials 102 102
Continue to review full report at Codecov.
|
@@ -96,6 +96,7 @@ func init() { | |||
deleteCmd.Flags().StringVarP(&deleteArgs.Nodes, "nodes", "n", "", "reduce Count or IPList to nodes") | |||
deleteCmd.Flags().StringVarP(&deleteClusterFile, "Clusterfile", "f", "", "delete a kubernetes cluster with Clusterfile Annotations") | |||
deleteCmd.Flags().StringVarP(&deleteClusterName, "cluster", "c", "", "delete a kubernetes cluster with cluster name") | |||
deleteCmd.Flags().StringSliceVarP(&deleteArgs.CustomEnv, "env", "e", []string{}, "set custom environment variables") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
set or delete?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
its set
, thats because in some case user want to set custom Env params for supporting execute clean scripts .
/test apply |
LGTM |
Describe what this PR does / why we need it
Does this pull request fix one issue?
fixes #1469
Describe how you did it
Describe how to verify it
test success on my side:
all cluster node use the same password:
all cluster node use the different password:
Special notes for reviews