mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
* Updated image for Elasticsearch 6 support, removed supervisord since k8s deployments provide that capability already, and added apiVersion to support helm upgrades * added new dockerfile source repo to sources list for the Helm chart * removed obsolete repo from helm Chart source list * conditionally create the deployment only if elasticsearch host was provided; needed for PR merge bot * conditionally create the deployment only if elasticsearch host was provided; needed for PR merge bot * change maintainer format
15 lines
394 B
YAML
15 lines
394 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ template "elastalert.fullname" . }}-rules
|
|
labels:
|
|
app: {{ template "elastalert.name" . }}
|
|
chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
data:
|
|
{{- range $key, $value := .Values.rules }}
|
|
{{ $key | indent 2}}: |-
|
|
{{ $value | indent 4}}
|
|
{{- end }}
|