Skip to content

Commit 68ca866

Browse files
authored
Merge pull request #48 from appuio/replace-kube-rbac-proxy-image
Replace `gcr.io` images
2 parents 54d4801 + 665eb7b commit 68ca866

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

Dockerfile

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1-
FROM gcr.io/distroless/static:nonroot
1+
FROM docker.io/library/alpine:3.21 as runtime
22

3-
WORKDIR /
4-
COPY scheduler-canary-controller manager
5-
USER 65532:65532
3+
RUN \
4+
apk add --update --no-cache \
5+
bash \
6+
curl \
7+
ca-certificates \
8+
tzdata
69

710
ENTRYPOINT ["/manager"]
11+
COPY scheduler-canary-controller manager
12+
13+
USER 65536:0

config/default/manager_auth_proxy_patch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
capabilities:
1616
drop:
1717
- "ALL"
18-
image: gcr.io/kubebuilder/kube-rbac-proxy:v0.13.0
18+
image: quay.io/brancz/kube-rbac-proxy:v0.18.2
1919
args:
2020
- "--secure-listen-address=0.0.0.0:8443"
2121
- "--upstream=http://127.0.0.1:8080/"

0 commit comments

Comments
 (0)