Files
Jason Ertel a6830d65f7 [stable/elastalert] Updated image for Elasticsearch 6 support, and other minor chart adjustments (#3859)
* 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
2018-03-16 06:02:23 -07:00

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 }}