mirror of
https://github.com/bitnami/charts.git
synced 2026-03-10 15:07:49 +08:00
* [bitnami/thanos] New major version Signed-off-by: juan131 <juanariza@vmware.com> * Add commonAnnotations, extraDeploy, persistence.annotations, ingress.tls, ingress.selfSigned, sidecars, extraEnvVars and updateStrategy standardizations Signed-off-by: juan131 <juanariza@vmware.com> * Remove trailing spaces Signed-off-by: juan131 <juanariza@vmware.com> * Add *.service.ports, *.service.NodePorts and *service.portextraPorts Signed-off-by: juan131 <juanariza@vmware.com> * Add note about deprecated values Signed-off-by: juan131 <juanariza@vmware.com> * [bitnami/thanos] Update components versions Signed-off-by: Bitnami Containers <containers@bitnami.com> Co-authored-by: Bitnami Containers <containers@bitnami.com>
23 lines
947 B
YAML
23 lines
947 B
YAML
{{- if (include "thanos.createObjstoreSecret" .) }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "common.names.fullname" . }}-objstore-secret
|
|
namespace: {{ .Release.Namespace | quote }}
|
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
|
{{- if .Values.commonLabels }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
data:
|
|
objstore.yml: |-
|
|
{{- include "common.tplvalues.render" (dict "value" .Values.objstoreConfig "context" $) | b64enc | nindent 4 }}
|
|
{{- if .Values.indexCacheConfig }}
|
|
index-cache.yml: |-
|
|
{{- include "common.tplvalues.render" (dict "value" .Values.indexCacheConfig "context" $) | b64enc | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.bucketCacheConfig }}
|
|
bucket-cache.yml: |-
|
|
{{- include "common.tplvalues.render" (dict "value" .Values.bucketCacheConfig "context" $) | b64enc | nindent 4 }}
|
|
{{- end }}
|
|
{{ end }}
|