From 448c858152b66c80a18ebd6afe7b8452b56650b3 Mon Sep 17 00:00:00 2001 From: Ben Galewsky Date: Tue, 26 Apr 2022 16:22:41 -0500 Subject: [PATCH] Switch around minio key and secret --- charts/mlflow/Chart.yaml | 2 +- charts/mlflow/templates/deployment.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/mlflow/Chart.yaml b/charts/mlflow/Chart.yaml index 7ab73f9..6b39bcc 100644 --- a/charts/mlflow/Chart.yaml +++ b/charts/mlflow/Chart.yaml @@ -8,7 +8,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.0.2 +version: 1.0.3 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/mlflow/templates/deployment.yaml b/charts/mlflow/templates/deployment.yaml index 3d8f6f4..4e830e5 100644 --- a/charts/mlflow/templates/deployment.yaml +++ b/charts/mlflow/templates/deployment.yaml @@ -49,12 +49,12 @@ spec: valueFrom: secretKeyRef: name: {{ .Values.minio.auth.existingSecret }} - key: root-password + key: root-user - name: AWS_SECRET_ACCESS_KEY valueFrom: secretKeyRef: name: {{ .Values.minio.auth.existingSecret }} - key: root-user + key: root-password {{- else }} - name: AWS_ACCESS_KEY_ID value: "{{ .Values.minio.auth.rootUser }}"