Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit 3781b98

Browse files
authored
Merge pull request #47 from jetstack/quay-image
Use jetstack quay.io image location for kube-oidc-proxy
2 parents 85ae7d9 + 3535936 commit 3781b98

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

demo/manifests/components/kube-oidc-proxy.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
local kube = import '../vendor/kube-prod-runtime/lib/kube.libsonnet';
22
local utils = import '../vendor/kube-prod-runtime/lib/utils.libsonnet';
33

4-
local KUBE_OIDC_PROXY_IMAGE = 'docker.io/simonswine/kube-oidc-proxy';
4+
local KUBE_OIDC_PROXY_IMAGE = 'quay.io/jetstack/kube-oidc-proxy:0.1.0';
55
local CONFIG_PATH = '/etc/kube-oidc-proxy';
66
local READINESS_PORT = 8080;
77

demo/yaml/kube-oidc-proxy.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ spec:
2828
app: kube-oidc-proxy
2929
spec:
3030
containers:
31-
- image: quay.io/jetstack/kube-oidc-proxy
31+
- image: quay.io/jetstack/kube-oidc-proxy:0.1.0
3232
ports:
3333
- containerPort: 443
3434
- containerPort: 8080
@@ -38,6 +38,7 @@ spec:
3838
initialDelaySeconds: 5
3939
periodSeconds: 10
4040
name: kube-oidc-proxy
41+
command: ["kube-oidc-proxy"]
4142
args:
4243
- "--secure-port=443"
4344
- "--tls-cert-file=/etc/oidc/tls/crt.pem"

0 commit comments

Comments
 (0)