Files
charts/bitnami/mastodon/templates/externalelasticsearch-secret.yaml

21 lines
834 B
YAML

{{- /*
Copyright VMware, Inc.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{- if and (not .Values.elasticsearch.enabled) (not .Values.externalElasticsearch.existingSecret) }}
apiVersion: v1
kind: Secret
metadata:
name: {{ printf "%s-externalelasticsearch" (include "common.names.fullname" .) | trunc 63 | trimSuffix "-" }}
namespace: {{ include "common.names.namespace" . | quote }}
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
app.kubernetes.io/part-of: mastodon
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" (dict "value" .Values.commonAnnotations "context" $) | nindent 4 }}
{{- end }}
type: Opaque
data:
elasticsearch-password: {{ .Values.externalElasticsearch.password | b64enc | quote }}
{{- end }}