-
Notifications
You must be signed in to change notification settings - Fork 4
Move away from gcr.io staging repo #10
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,9 @@ RUN CGO_ENABLED=0 go build -o /buildroot/artifacts/{{COMPONENT}} cmd/*.go | |
# | ||
# FINAL IMAGE | ||
# | ||
|
||
# gcr.io is deprecated, but gcr.io/distroless/static is hosted by artifact hub with the gcr.io path. | ||
# See: https://github.com/GoogleContainerTools/distroless/issues/1320 | ||
FROM gcr.io/distroless/static:nonroot | ||
Comment on lines
+30
to
33
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not necessary to migrate this |
||
|
||
LABEL maintainers="Kubernetes Authors" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ echo "PLATFORM: ${PLATFORM}" | |
# debug the rest of the script in case of image/CI build issues | ||
set -o xtrace | ||
|
||
REPO="gcr.io/k8s-staging-sig-storage" | ||
REPO="registry.k8s.io/k8s-staging-sig-storage" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think this is going to work. registry.k8s.io doesn't have a web interface to browse images, but I can browse it with this: https://explore.ggcr.dev/?repo=registry.k8s.io There is no |
||
|
||
CONTROLLER_IMAGE="${REPO}/objectstorage-controller" | ||
SIDECAR_IMAGE="${REPO}/objectstorage-sidecar" | ||
|
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.
There is still no replacement for
gcr.io/k8s-testimages/gcb-docker-gcloud
. The best I can do now is update our TODO note with latest info and progress.