TRON-2333: Fix pod names ending in .--xxxx #222
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was an edge case where sanitized pod names ending up with .<6 characters> would then get truncated to something like
.--<4 random chars>
due to our truncation logic inget_sanitised_kubernetes_name
.However
.--aaaa
is not valid in a pod name as each section between.
s must start with an alphanumeric character.We saw errors such as the following when this case was hit:
Solution
Before we try to add our truncation suffix, we simply strip any trailing
.
in our truncated name. This yields a pod name 1 character less than expected, but ensures pod name formats will continue to match previous expectations.I also did not strip any further characters as
.
was the most important one that would cause validation to fail.Verification
with the new test in place but using the old
get_sanitised_kubernetes_name
, the test fails as expected, with the non-RFC1123-compliant result: