-
Notifications
You must be signed in to change notification settings - Fork 19
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
Use GHCR docker image by default #39
Conversation
Fix daemonset, missing configmap
@@ -1,12 +1,12 @@ | |||
FROM golang:alpine as builder | |||
FROM docker.io/golang:alpine as builder |
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.
what's the reason behind this? I know we can do short hand and configure local container runtime.
I don't mind being more specific, just curious,
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.
In the general case, I think it's always better to be explicit about the container image source to ensure you get exactly the image you intend. In the case of Podman, by default it will throw an error about ambiguous image reference (it can be configured to do autocompletion).
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.
1 comment, otherwise lgtm
@zeeke ptal |
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.
LGTM
Make it easer for users (rather than developers) to get started by making GHCR the default image source.
deployment/daemonset.yaml
to reference GHCR rather than localhost