-
Notifications
You must be signed in to change notification settings - Fork 350
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
fix(build): complete repo name for default baseImage #4480
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not really sure if that would be the correct way to pull the image from Docker Hub catalog. According to the Docker documentation, the path should be even without the docker.io
[1] as it assumes by default that is the registry to use. Is it required by any chance in some kubernetes cluster like OCP?
[1] https://docs.docker.com/engine/reference/commandline/pull/#pull-from-a-different-registry
The |
Yeah, let's try removing the domain name and see if the default is good enough also for other publish strategies. If it does not work, we should instead apply any specific logic to the affected publishing strategy. |
f00fd07
to
594ceeb
Compare
8dc613c
to
c678e7f
Compare
c678e7f
to
a75df76
Compare
a75df76
to
8b153cf
Compare
@squakez @oscerd @christophd can one of you trigger the workflows please 😄 |
I've restarted the failing checks now that the actions are back stable. If all is green, is this good to merge? |
Motivation
The baseImage is repository partially complete. To be correct we need to have the full name or the short name.
Description
Remove the
docker.io
part into the repository name for the baseImage.Add some code to manage the Buildah publish strategy's default baseImage that needs a full name. In case of override of the default baseImage the user is in charge of ensuring it is valid.
Release Note