-
Notifications
You must be signed in to change notification settings - Fork 551
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
AWS cluster name restrictions should've been relaxed #2709
Comments
Opened a PR here #2743 |
Brainstorming out loud some considerations in this problem: (1) We want to support some common cluster names that aren't currently supported like:
(2) Another desired property is whatever mapping we do to produce In other words the mapping shouldn't be completely random like |
To fulfill these requirements, we can:
Seems like the cluster name regex also wants to enforce that the name starts with a letter. If this condition is not satisfied by the user with the local name (e.g. "2bert"), we can prepend a letter to make the cloud cluster name valid |
Sounds like a solid start! I added another case to the above (periods). Have you thought about the following?
|
Nice!
What are your thoughts? I'll look into updating my previous PR with these considerations soon |
IIRC, we have recently added a
local cluster name -> cluster name on cloud
indirection, so the local cluster names should not be restricted to that regex anymore?UPDATE: solution's more involved than just relying on the current "truncate + append hash" mapping. See
#2743 (comment)
The text was updated successfully, but these errors were encountered: