Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Honor minio fullname #9565

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ spec:
projected:
sources:
- configMap:
name: {{ .Release.Name }}-minio
name: {{ template "minio.fullname" .Subcharts.minio }}
- secret:
name: {{ .Release.Name }}-minio
name: {{ template "minio.fullname" .Subcharts.minio }}
{{- if .Values.minio.tls.enabled }}
- name: cert-secret-volume-mc
secret:
Expand Down
8 changes: 4 additions & 4 deletions operations/helm/charts/mimir-distributed/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ mimir:
s3:
access_key_id: {{ .Values.minio.rootUser }}
bucket_name: enterprise-metrics-admin
endpoint: {{ .Release.Name }}-minio.{{ .Release.Namespace }}.svc:9000
endpoint: {{ template "minio.fullname" .Subcharts.minio }}.{{ .Release.Namespace }}.svc:9000
insecure: true
secret_access_key: {{ .Values.minio.rootPassword }}
{{- end }}
Expand Down Expand Up @@ -171,7 +171,7 @@ mimir:
s3:
access_key_id: {{ .Values.minio.rootUser }}
bucket_name: {{ include "mimir.minioBucketPrefix" . }}-ruler
endpoint: {{ .Release.Name }}-minio.{{ .Release.Namespace }}.svc:9000
endpoint: {{ template "minio.fullname" .Subcharts.minio }}.{{ .Release.Namespace }}.svc:9000
insecure: true
secret_access_key: {{ .Values.minio.rootPassword }}
{{- end }}
Expand Down Expand Up @@ -219,7 +219,7 @@ mimir:
s3:
access_key_id: {{ .Values.minio.rootUser }}
bucket_name: {{ include "mimir.minioBucketPrefix" . }}-tsdb
endpoint: {{ .Release.Name }}-minio.{{ .Release.Namespace }}.svc:9000
endpoint: {{ template "minio.fullname" .Subcharts.minio }}.{{ .Release.Namespace }}.svc:9000
insecure: true
secret_access_key: {{ .Values.minio.rootPassword }}
{{- end }}
Expand Down Expand Up @@ -374,7 +374,7 @@ mimir:
{{- if .Values.minio.enabled }}
backend: s3
s3:
endpoint: {{ .Release.Name }}-minio.{{ .Release.Namespace }}.svc:9000
endpoint: {{ template "minio.fullname" .Subcharts.minio }}.{{ .Release.Namespace }}.svc:9000
bucket_name: {{ include "mimir.minioBucketPrefix" . }}-ruler
access_key_id: {{ .Values.minio.rootUser }}
secret_access_key: {{ .Values.minio.rootPassword }}
Expand Down
Loading