Skip to content

Commit

Permalink
Merge pull request #48 from appuio/replace-kube-rbac-proxy-image
Browse files Browse the repository at this point in the history
Replace `gcr.io` images
  • Loading branch information
bastjan authored Jan 17, 2025
2 parents 54d4801 + 665eb7b commit 68ca866
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
14 changes: 10 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
FROM gcr.io/distroless/static:nonroot
FROM docker.io/library/alpine:3.21 as runtime

WORKDIR /
COPY scheduler-canary-controller manager
USER 65532:65532
RUN \
apk add --update --no-cache \
bash \
curl \
ca-certificates \
tzdata

ENTRYPOINT ["/manager"]
COPY scheduler-canary-controller manager

USER 65536:0
2 changes: 1 addition & 1 deletion config/default/manager_auth_proxy_patch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
capabilities:
drop:
- "ALL"
image: gcr.io/kubebuilder/kube-rbac-proxy:v0.13.0
image: quay.io/brancz/kube-rbac-proxy:v0.18.2
args:
- "--secure-listen-address=0.0.0.0:8443"
- "--upstream=http://127.0.0.1:8080/"
Expand Down

0 comments on commit 68ca866

Please sign in to comment.