Skip to content

Commit

Permalink
Fixed missing minio secret reference for mirror deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
mason committed Jan 2, 2025
1 parent 6ccf9a8 commit 894a013
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ spec:
- secretRef:
name: {{ include "common.names.custom" (list . "redis") }}
{{- end }}
{{- if .Values.global.minio.enabled }}
- secretRef:
name: {{ include "common.names.custom" (list . "minio") }}
{{- end }}
env:
- name: STARHUB_SERVER_REDIS_PASSWORD
value: "$(REDIS_PASSWD)"
Expand Down Expand Up @@ -127,6 +131,10 @@ spec:
- secretRef:
name: {{ include "common.names.custom" (list . "redis") }}
{{- end }}
{{- if .Values.global.minio.enabled }}
- secretRef:
name: {{ include "common.names.custom" (list . "minio") }}
{{- end }}
env:
- name: STARHUB_SERVER_REDIS_PASSWORD
value: "$(REDIS_PASSWD)"
Expand Down

0 comments on commit 894a013

Please sign in to comment.