Skip to content
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: virtualcluster/nodepool should read global flag #89

Merged
merged 1 commit into from
Feb 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cmd/kperf/commands/virtualcluster/nodepool.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ var nodepoolAddCommand = cli.Command{
return fmt.Errorf("required non-empty nodepool name")
}

kubeCfgPath := cliCtx.String("kubeconfig")
kubeCfgPath := cliCtx.GlobalString("kubeconfig")

affinityLabels, err := utils.KeyValuesMap(cliCtx.StringSlice("affinity"))
if err != nil {
Expand Down Expand Up @@ -103,7 +103,7 @@ var nodepoolDelCommand = cli.Command{
return fmt.Errorf("required non-empty nodepool name")
}

kubeCfgPath := cliCtx.String("kubeconfig")
kubeCfgPath := cliCtx.GlobalString("kubeconfig")

return virtualcluster.DeleteNodepool(context.Background(), kubeCfgPath, nodepoolName)
},
Expand All @@ -113,7 +113,7 @@ var nodepoolListCommand = cli.Command{
Name: "list",
Usage: "List virtual node pools",
Action: func(cliCtx *cli.Context) error {
kubeCfgPath := cliCtx.String("kubeconfig")
kubeCfgPath := cliCtx.GlobalString("kubeconfig")
nodepools, err := virtualcluster.ListNodepools(context.Background(), kubeCfgPath)
if err != nil {
return err
Expand Down
Loading