From 0e7627cb7ddaefb45b106752cd2e00d78a726178 Mon Sep 17 00:00:00 2001 From: alexlebens Date: Fri, 19 Apr 2024 04:41:22 -0600 Subject: [PATCH] fix oidc values path --- charts/kyoo/Chart.yaml | 2 +- charts/kyoo/templates/deployment-back.yaml | 8 ++++---- charts/kyoo/templates/deployment-migrations.yaml | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/charts/kyoo/Chart.yaml b/charts/kyoo/Chart.yaml index afc7a2e..43a5d67 100644 --- a/charts/kyoo/Chart.yaml +++ b/charts/kyoo/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: kyoo -version: 0.1.0 +version: 0.1.1 description: Chart for Kyoo keywords: - media diff --git a/charts/kyoo/templates/deployment-back.yaml b/charts/kyoo/templates/deployment-back.yaml index b7cb1ad..7ca0e5c 100644 --- a/charts/kyoo/templates/deployment-back.yaml +++ b/charts/kyoo/templates/deployment-back.yaml @@ -125,13 +125,13 @@ spec: - name: OIDC_CLIENT_ID valueFrom: secretKeyRef: - name: "{{ .Values.oidc.existingSecretName }}" - key: "{{ .Values.oidc.clientIdKey }}" + name: "{{ .Values.config.oidc.existingSecretName }}" + key: "{{ .Values.config.oidc.clientIDKey }}" - name: OIDC_CLIENT_SECRET valueFrom: secretKeyRef: - name: "{{ .Values.oidc.existingSecretName }}" - key: "{{ .Values.oidc.clientSecretKey }}" + name: "{{ .Values.config.oidc.existingSecretName }}" + key: "{{ .Values.config.oidc.secretIDKey }}" {{ end }} - name: MEILI_HOST diff --git a/charts/kyoo/templates/deployment-migrations.yaml b/charts/kyoo/templates/deployment-migrations.yaml index 7995559..6003dab 100644 --- a/charts/kyoo/templates/deployment-migrations.yaml +++ b/charts/kyoo/templates/deployment-migrations.yaml @@ -118,13 +118,13 @@ spec: - name: OIDC_CLIENT_ID valueFrom: secretKeyRef: - name: "{{ .Values.oidc.existingSecretName }}" - key: "{{ .Values.oidc.clientIdKey }}" + name: "{{ .Values.config.oidc.existingSecretName }}" + key: "{{ .Values.config.oidc.clientIDKey }}" - name: OIDC_CLIENT_SECRET valueFrom: secretKeyRef: - name: "{{ .Values.oidc.existingSecretName }}" - key: "{{ .Values.oidc.clientSecretKey }}" + name: "{{ .Values.config.oidc.existingSecretName }}" + key: "{{ .Values.config.oidc.secretIDKey }}" {{ end }} - name: MEILI_HOST