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
Currently, ImageName only accepts domain names or IPv4 literals in the registry name.
However, parsing IPv6 literals support was added Docker Distrubution Reference.
We should modify our registry host regular expressions to accommodate IPv6 addresses.
Distribution's Regexp can be seen in regexp.go
domainName = domainNameComponent + anyTimes(`\.`+domainNameComponent) ipv6address = `\[(?:[a-fA-F0-9:]+)\]` host = `(?:` + domainName + `|` + ipv6address + `)`
ImageName should be able to parse image name with registry having IPv6 literal (e.g [2001:db8::1]:5000/repo:tag)
[2001:db8::1]:5000/repo:tag
The text was updated successfully, but these errors were encountered:
chore: add missing changelog entry for eclipse-jkube#2541
eclipse-jkube#2541
c17c780
Signed-off-by: Marc Nuri <[email protected]>
chore: add missing changelog entry for #2541
#2541
c44429a
Successfully merging a pull request may close this issue.
Task description
Description
Currently, ImageName only accepts domain names or IPv4 literals in the registry name.
However, parsing IPv6 literals support was added Docker Distrubution Reference.
We should modify our registry host regular expressions to accommodate IPv6 addresses.
Distribution's Regexp can be seen in regexp.go
Expected Behavior
ImageName should be able to parse image name with registry having IPv6 literal (e.g
[2001:db8::1]:5000/repo:tag
)Acceptance Criteria
The text was updated successfully, but these errors were encountered: