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

Volume name should respect restrictions #47

Merged
merged 1 commit into from
Dec 12, 2018

Conversation

masayag
Copy link
Collaborator

@masayag masayag commented Dec 10, 2018

In foreman, the VM name may contain also the domain name.
When setting this name as the volume name, running the VM fails
with the following error:

  Warning  FailedCreate  21s               virtualmachine-controller
  Error creating pod: Pod "virt-launcher-vmi-multus-lqcwz" is invalid:
  spec.containers[0].name: Invalid value: "volumevmi-multus.example.com":
  a DNS-1123 label must consist of lower case alphanumeric characters or '-',
  and must start and end with an alphanumeric character (e.g. 'my-name',
  or '123-abc', regex used for validation is '[a-z0-9]([-a-z0-9]*[a-z0-9])?')

Therefore the dots from FQDN VM name cannot be part of the volume name.
The patch assumes the name without the domain should be sufficient.

For VM named stacy-bulgin.example.com the created volume name is stacy-bulgin-example-com-disk-01

@masayag masayag requested a review from pkliczewski December 10, 2018 09:11
@@ -52,11 +52,11 @@ def create(args = {})
end

volumes = []

volume_name = vm_name.split('.')[0]
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@pkliczewski changed accordingly to the same logic as in apb

@masayag
Copy link
Collaborator Author

masayag commented Dec 11, 2018

@pkliczewski we should wait until ManageIQ/kubeclient#373 is merged. It will determine the actual generated method names for the network attachment definition resource.

With the current version of the PR, this PR should be changed (I'll send an updated version soon)

In foreman, the VM name may contain also the domain name.
When setting this name as the volume name, running the VM fails
with the following error:

  Warning  FailedCreate  21s               virtualmachine-controller
  Error creating pod: Pod "virt-launcher-vmi-multus-lqcwz" is invalid:
  spec.containers[0].name: Invalid value: "volumevmi-multus.example.com":
  a DNS-1123 label must consist of lower case alphanumeric characters or '-',
  and must start and end with an alphanumeric character (e.g. 'my-name',
  or '123-abc', regex used for validation is '[a-z0-9]([-a-z0-9]*[a-z0-9])?')

Therefore the dots from FQDN VM name cannot be part of the volume name.
Both dots and underscores will be replaced by dashes.
@pkliczewski pkliczewski merged commit 210fd6a into fog:core-1.45.0 Dec 12, 2018
@masayag masayag deleted the volume_name_format branch December 12, 2018 21:15
@masayag masayag added the merge to master Label fits core-1.45.0 branch, for PRs that needed to be merged to upstream branch label Dec 27, 2018
@masayag masayag removed merge to master Label fits core-1.45.0 branch, for PRs that needed to be merged to upstream branch labels Jan 13, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants