feat(helm): Support alibabacloud oss in helm chart (#13441)

pull/13325/head^2
Pger-Y 11 months ago committed by GitHub
parent fc3904ee69
commit 3ebab6f393
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 8
      production/helm/loki/templates/_helpers.tpl

@ -297,6 +297,14 @@ azure:
endpoint_suffix: {{ . }}
{{- end }}
{{- end -}}
{{- else if eq .Values.loki.storage.type "alibabacloud" -}}
{{- with .Values.loki.storage.alibabacloud }}
alibabacloud:
bucket: {{ $.Values.loki.storage.bucketNames.chunks }}
endpoint: {{ .endpoint }}
access_key_id: {{ .accessKeyId }}
secret_access_key: {{ .secretAccessKey }}
{{- end -}}
{{- else if eq .Values.loki.storage.type "swift" -}}
{{- with .Values.loki.storage.swift }}
swift:

Loading…
Cancel
Save