From 0e884305cc8b08e7f48e4d7babe4ca401f6f001a Mon Sep 17 00:00:00 2001 From: rasmus Date: Mon, 12 Feb 2024 08:13:05 +0200 Subject: [PATCH] change image for whoami-oidc how about not using custom-patched 3yo stuff --- whoami-oidc/application.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/whoami-oidc/application.yaml b/whoami-oidc/application.yaml index fde1937..b1987a3 100644 --- a/whoami-oidc/application.yaml +++ b/whoami-oidc/application.yaml @@ -7,7 +7,7 @@ spec: displayName: Whoami (oidc-tester-app) uri: https://whoami-oidc.k-space.ee redirectUris: - - https://whoami-oidc.k-space.ee/oauth2/callback + - https://whoami-oidc.k-space.ee/auth/callback grantTypes: - authorization_code - refresh_token @@ -38,27 +38,27 @@ spec: spec: containers: - name: whoami-oidc - image: harbor.k-space.ee/jtagcat/oidc-tester-app@sha256:9e811f2a0ab2ca1a29fd05daca3aab61ad4960e9327527d0725d53aaa60ba184 + image: beryju/oidc-test-client:latest@sha256:442e4d6c0468df4f1bc1012cc9276918072df93bfada7d84eb14385f5af23a6a env: - - name: TESTER_PUBLIC_URL - value: https://whoami-oidc.k-space.ee/ - - name: TESTER_ISSUER + - name: OIDC_ROOT_URL + value: https://whoami-oidc.k-space.ee + - name: OIDC_PROVIDER valueFrom: secretKeyRef: name: oidc-client-whoami-oidc-owner-secrets key: OIDC_GATEWAY_URI - - name: TESTER_CLIENT_ID + - name: OIDC_CLIENT_ID valueFrom: secretKeyRef: name: oidc-client-whoami-oidc-owner-secrets key: OIDC_CLIENT_ID - - name: TESTER_CLIENT_SECRET + - name: OIDC_CLIENT_SECRET valueFrom: secretKeyRef: name: oidc-client-whoami-oidc-owner-secrets key: OIDC_CLIENT_SECRET ports: - - containerPort: 8080 + - containerPort: 9009 name: http --- apiVersion: v1