openstack-helm-addons/elasticsearch/templates/configmap-etc.yaml

44 lines
1.5 KiB
YAML

# Copyright 2017 The Openstack-Helm Authors.
#
# 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.
apiVersion: v1
kind: ConfigMap
metadata:
name: elastic-etc
data:
elasticsearch.yml: |
{{ if .Values.conf.elasticsearch.override -}}
{{ .Values.conf.elasticsearch.override | indent 4 }}
{{- else -}}
{{- if .Values.conf.elasticsearch.prefix -}}
{{ .Values.conf.elasticsearch.prefix | indent 4 }}
{{- end }}
{{ tuple "etc/_elasticsearch.yml.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
{{- end }}
{{- if .Values.conf.elasticsearch.append -}}
{{ .Values.conf.elasticsearch.append | indent 4 }}
{{- end }}
logging.yml: |
{{ if .Values.conf.logging.override -}}
{{ .Values.conf.logging.override | indent 4 }}
{{- else -}}
{{- if .Values.conf.logging.prefix -}}
{{ .Values.conf.logging.prefix | indent 4 }}
{{- end }}
{{ tuple "etc/_logging.yml.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
{{- end }}
{{- if .Values.conf.logging.append -}}
{{ .Values.conf.logging.append | indent 4 }}
{{- end }}