-
Notifications
You must be signed in to change notification settings - Fork 242
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
Add validation for cluster_name #1641
Conversation
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.
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ahmedwaleedmalik, kron4eg The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
LGTM label has been added. Git tree hash: f79ebe50bc312f5f2c16732c69c09b78aa8ade33
|
/retest |
1 similar comment
/retest |
This commit fixes an rather annoying issue where `ValidateName` does not print the correct value of the invalid cluster name which made the issue hard to debug. Background: I recently upgraded from an earlier KubeOne version to master and my cluster-name contained dots (`.`). However since kubermatic#1641 this is no longer valid. The output of this validation looked like ```bash $ kubeone apply --manifest kubeone.yaml --credentials credentials.yaml --tfjson output.json --auto-approve --verbose Error: failed to initialize State: failed to build state: failed to load cluster: unable to load a given KubeOneCluster object: unable to validate the given KubeOneCluster object: name: Invalid value: "": .name should be lowercase and can only contain alphanumeric characters and hyphens(-) ``` With this commit in place the output looks like this: ```bash $ kubeone install --manifest kubeone.yaml --credentials credentials.yaml --tfjson output.json --verbose Error: failed to initialize State: failed to build state: failed to load cluster: unable to load a given KubeOneCluster object: unable to validate the given KubeOneCluster object: name: Invalid value: "k8s.cedi.dev": .name should be lowercase and can only contain alphanumeric characters and hyphens(-) ``` Signed-off-by: Cedric Kienzler <[email protected]>
…lue (#1646) This commit fixes an rather annoying issue where `ValidateName` does not print the correct value of the invalid cluster name which made the issue hard to debug. Background: I recently upgraded from an earlier KubeOne version to master and my cluster-name contained dots (`.`). However since #1641 this is no longer valid. The output of this validation looked like ```bash $ kubeone apply --manifest kubeone.yaml --credentials credentials.yaml --tfjson output.json --auto-approve --verbose Error: failed to initialize State: failed to build state: failed to load cluster: unable to load a given KubeOneCluster object: unable to validate the given KubeOneCluster object: name: Invalid value: "": .name should be lowercase and can only contain alphanumeric characters and hyphens(-) ``` With this commit in place the output looks like this: ```bash $ kubeone install --manifest kubeone.yaml --credentials credentials.yaml --tfjson output.json --verbose Error: failed to initialize State: failed to build state: failed to load cluster: unable to load a given KubeOneCluster object: unable to validate the given KubeOneCluster object: name: Invalid value: "k8s.cedi.dev": .name should be lowercase and can only contain alphanumeric characters and hyphens(-) ``` Signed-off-by: Cedric Kienzler <[email protected]>
What this PR does / why we need it:
Add validation for
cluster_name
variableWhich issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Fixes #1630
Special notes for your reviewer:
Does this PR introduce a user-facing change?: