openstack-helm-infra/elasticsearch/templates/secret-environment.yaml
Steven Fitzpatrick 23191ef5a3 Elasticsearch Secret Vars
This change adds the HTK Secret Environment Variables function
to Elasticsearch. This may be required to store auth or certificate
details needed to establish remote clustering.

Change-Id: I3f1167f1c015101f768ad223024ce2490d355d83
2020-05-13 11:31:46 -05:00

28 lines
884 B
YAML

{{/*
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/}}
{{- if and .Values.manifests.secret_environment .Values.pod.env.secrets }}
{{- $envAll := . }}
---
apiVersion: v1
kind: Secret
metadata:
name: {{ printf "%s-%s" $envAll.Release.Name "env-secret" | quote }}
type: Opaque
data:
{{- range $key, $value := .Values.pod.env.secrets }}
{{ $key | upper }}: {{ $value | b64enc }}
{{- end }}
{{- end }}