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

🌱 improve clusterctl generate cluster --list-variables #4708

Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion cmd/clusterctl/cmd/generate_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ func runGenerateClusterTemplate(cmd *cobra.Command, name string) error {
}

if gc.listVariables {
return printVariablesOutput(cmd, template)
return printVariablesOutput(template, templateOptions)
}

return printYamlOutput(template)
Expand Down
76 changes: 51 additions & 25 deletions cmd/clusterctl/cmd/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ import (
"text/tabwriter"

"github.com/pkg/errors"
"github.com/spf13/cobra"

"sigs.k8s.io/cluster-api/cmd/clusterctl/client"
)

Expand All @@ -50,38 +48,66 @@ func stringPtr(s string) *string {
}

// printVariablesOutput prints the expected variables in the template to stdout.
func printVariablesOutput(cmd *cobra.Command, template client.Template) error {
func printVariablesOutput(template client.Template, options client.GetClusterTemplateOptions) error {
// Decorate the variable map for printing
variableMap := template.VariableMap()
for name, defaultValue := range variableMap {
if defaultValue != nil {
v := *defaultValue
var requiredVariables []string
var optionalVariables []string
for name := range variableMap {
if variableMap[name] != nil {
v := *variableMap[name]
// Add quotes around any unquoted strings
if len(v) > 0 && !strings.HasPrefix(v, "\"") {
v = fmt.Sprintf("\"%s\"", v)
variableMap[name] = &v
}
}
}
// Add variables that are defaulted from clusterctl
controlPlaneMachineCount, err := cmd.Flags().GetInt64("control-plane-machine-count")
if err != nil {
return err
}
variableMap["CONTROL_PLANE_MACHINE_COUNT"] = stringPtr(strconv.FormatInt(controlPlaneMachineCount, 10))
workerMachineCount, err := cmd.Flags().GetInt64("worker-machine-count")
if err != nil {
return err
}
variableMap["WORKER_MACHINE_COUNT"] = stringPtr(strconv.FormatInt(workerMachineCount, 10))
variableMap["KUBERNETES_VERSION"] = stringPtr("the value of --kubernetes-version")
variableMap["CLUSTER_NAME"] = stringPtr("<name> from \"clusterctl config cluster <name>\"")

// transform variable map into required and optional lists
var requiredVariables []string
var optionalVariables []string
for name, defaultValue := range variableMap {
if defaultValue != nil {
// Fix up default for well-know variables that have a special logic implemented in clusterctl.
// NOTE: this logic mimics the defaulting rules implemented in client.GetClusterTemplate;
switch name {
case "CLUSTER_NAME":
// Cluster name from the cmd arguments is used instead of template default.
variableMap[name] = stringPtr(options.ClusterName)
case "NAMESPACE":
// Namespace name from the cmd flags or from the kubeconfig is used instead of template default.
if options.TargetNamespace != "" {
variableMap[name] = stringPtr(options.TargetNamespace)
} else {
variableMap[name] = stringPtr("current Namespace in the KubeConfig file")
}
case "CONTROL_PLANE_MACHINE_COUNT":
// Control plane machine count uses the cmd flag, env variable or a constant is used instead of template default.
if options.ControlPlaneMachineCount == nil {
if val, ok := os.LookupEnv("CONTROL_PLANE_MACHINE_COUNT"); ok {
variableMap[name] = stringPtr(val)
} else {
variableMap[name] = stringPtr("1")
}
} else {
variableMap[name] = stringPtr(strconv.FormatInt(*options.ControlPlaneMachineCount, 10))
}
case "WORKER_MACHINE_COUNT":
// Worker machine count uses the cmd flag, env variable or a constant is used instead of template default.
if options.WorkerMachineCount == nil {
if val, ok := os.LookupEnv("WORKER_MACHINE_COUNT"); ok {
variableMap[name] = stringPtr(val)
} else {
variableMap[name] = stringPtr("0")
}
} else {
variableMap[name] = stringPtr(strconv.FormatInt(*options.WorkerMachineCount, 10))
}
case "KUBERNETES_VERSION":
// Kubernetes version uses the cmd flag, env variable, or the template default.
if options.KubernetesVersion != "" {
variableMap[name] = stringPtr(options.KubernetesVersion)
} else if val, ok := os.LookupEnv("KUBERNETES_VERSION"); ok {
variableMap[name] = stringPtr(val)
}
}

if variableMap[name] != nil {
optionalVariables = append(optionalVariables, name)
} else {
requiredVariables = append(requiredVariables, name)
Expand Down