We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Since yq 4.44.1 broke the regex here... "[:<>|*?/\\]"
"[:<>|*?/\\]"
I feel like this regex might be too complicated anyway.
The k8s specification states that names must meet the following https://kubernetes.io/docs/concepts/overview/working-with-objects/names/
Simply, RFC1123. Let's just make a regex that handles those permitted characters instead.
If a user creates a metadata.name with invalid RFC1123, that's a bigger problem beyond the scope of this project.
The text was updated successfully, but these errors were encountered:
@highb, do you still use this project? If not, I'll take care of this stuff
Sorry, something went wrong.
67457ce
No branches or pull requests
Since yq 4.44.1 broke the regex here...
"[:<>|*?/\\]"
I feel like this regex might be too complicated anyway.
The k8s specification states that names must meet the following https://kubernetes.io/docs/concepts/overview/working-with-objects/names/
Simply, RFC1123. Let's just make a regex that handles those permitted characters instead.
If a user creates a metadata.name with invalid RFC1123, that's a bigger problem beyond the scope of this project.
The text was updated successfully, but these errors were encountered: