This repository was archived by the owner on Dec 17, 2024. It is now read-only.

Description
To use the env var pw2_config (for monitored dbs) i need to mount a new volume in daemon container
so i propose to add
{{- if .Values.daemon.extraVolumeMounts }}
{{- .Values.daemon.extraVolumeMounts | toYaml | nindent 12 }}
{{- end }}
and
volumes:
- name: config-volume
configMap:
name: pgwatch2-config
optional: true
{{- if .Values.daemon.extraVolumes }}
{{- .Values.daemon.extraVolumes | toYaml | nindent 8 }}
{{- end }}