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
This commit is contained in:
Steven Fitzpatrick 2020-03-11 22:01:12 -05:00
parent e53d28718d
commit 23191ef5a3
2 changed files with 30 additions and 0 deletions

View File

@ -164,6 +164,9 @@ spec:
key: S3_SECRET_KEY
{{- if .Values.pod.env.client }}
{{ include "helm-toolkit.utils.to_k8s_env_vars" .Values.pod.env.client | indent 12 }}
{{- end }}
{{- if .Values.pod.env.secrets }}
{{ tuple $envAll .Values.pod.env.secrets | include "helm-toolkit.utils.to_k8s_env_secret_vars" | indent 12 }}
{{- end }}
volumeMounts:
- name: pod-tmp

View File

@ -0,0 +1,27 @@
{{/*
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 }}