Skip to content
Snippets Groups Projects
Commit 05a227ac authored by Nacho Barrientos's avatar Nacho Barrientos
Browse files

[MONIT-4165] Allow configuring mounts in Alertmanager

parent 51cf27a3
No related branches found
No related tags found
1 merge request!50[MONIT-4165] Allow configuring mounts in Alertmanager
Pipeline #10953518 passed
......@@ -79,6 +79,8 @@ This file contains the markdown version of the default values that this chart ta
| metrics.alertmanager.ingress.hosts | Array | `[]` | list of hosts for the alertmanager ingress |
| metrics.alertmanager.ingress.tls | Hash | `{}` | tls configuration for the alertmanager ingress |
| metrics.alertmanager.nodeSelector | Hash | `{}` | node selector configuration for the alertmanager |
| metrics.alertmanager.volumes | Array | `[]` | list of volumes to be declared |
| metrics.alertmanager.volumeMounts | Array | `[]` | list of volumes to be mounted |
| otlp.endpoint | string | `"monit-otlp.cern.ch"` | otlp endpoint where the otlp receivers are listening |
| otlp.port | int | `4319` | otlp port where the otlp receivers are listening |
| tenant.name | string | - | username used for authenitcating in the MONIT infrastructure |
......
......@@ -13,4 +13,12 @@ spec:
forceEnableClusterMode: true
alertmanagerConfigSelector: {}
alertmanagerConfigNamespaceSelector: {}
{{- end -}}
\ No newline at end of file
{{- if .Values.metrics.alertmanager.volumes }}
volumes:
{{- toYaml .Values.metrics.alertmanager.volumes | nindent 4 }}
{{- end }}
{{- if .Values.metrics.alertmanager.volumeMounts }}
volumeMounts:
{{- toYaml .Values.metrics.alertmanager.volumeMounts | nindent 4 }}
{{- end }}
{{- end -}}
suite: test alertmanager alertmanager
templates:
- alertmanager/alertmanager.yaml
tests:
- it: should not be deployed if metrics are disabled
set:
metrics.enabled: false
asserts:
- containsDocument:
kind: Alertmanager
apiVersion: "monitoring.coreos.com/v1"
name: it-monit-alertmanager
not: true
- it: should not be deployed if alertmanager is not enabled
set:
metrics.enabled: true
metrics.alertmanager.enabled: false
asserts:
- containsDocument:
kind: Alertmanager
apiVersion: "monitoring.coreos.com/v1"
name: it-monit-alertmanager
not: true
- it: should be deployed if metrics and alertmanager are enabled
set:
metrics.enabled: true
metrics.alertmanager.enabled: true
asserts:
- containsDocument:
kind: Alertmanager
apiVersion: "monitoring.coreos.com/v1"
name: it-monit-alertmanager
- it: should be deployed with volumes and volumeMounts if configured
set:
metrics.enabled: true
metrics.alertmanager.enabled: true
metrics.alertmanager.volumes:
- name: test-volume
secret:
secretName: test-secret
metrics.alertmanager.volumeMounts:
- mountPath: /foo
name: test-volume
asserts:
- containsDocument:
kind: Alertmanager
apiVersion: "monitoring.coreos.com/v1"
name: it-monit-alertmanager
- contains:
path: spec.volumes
count: 1
content:
name: test-volume
secret:
secretName: test-secret
- contains:
path: spec.volumeMounts
count: 1
content:
mountPath: /foo
name: test-volume
......@@ -273,6 +273,8 @@ metrics:
# If given will override the defaultNodeSelector and install the component
# only on the nodes that match the given condition.
nodeSelector: {}
volumes: []
volumeMounts: []
apiServer:
serviceMonitor:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment