Skip to content

Commit

Permalink
Merge pull request #9 from ncsa/fix_minio_secrets
Browse files Browse the repository at this point in the history
Switch around minio key and secret
  • Loading branch information
BenGalewsky authored Apr 26, 2022
2 parents 972c638 + 448c858 commit ae11176
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/mlflow/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions charts/mlflow/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand Down

0 comments on commit ae11176

Please sign in to comment.