test(deployment,secrets): volume and volumeMounts

This commit is contained in:
Markus Pesch 2024-11-26 19:03:44 +01:00
parent 19b5ac5969
commit abd73d82f2
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982

View File

@ -104,7 +104,7 @@ tests:
secretRef: secretRef:
name: custom-database-secret name: custom-database-secret
- it: Test exporterConfig with own secret - it: Test config.exporterConfig.existingSecret
set: set:
config.exporterConfig.existingSecret.enabled: true config.exporterConfig.existingSecret.enabled: true
config.exporterConfig.existingSecret.secretName: exporter-config-secret config.exporterConfig.existingSecret.secretName: exporter-config-secret
@ -126,7 +126,7 @@ tests:
- secret: - secret:
name: prometheus-postgres-exporter-unittest-web-config name: prometheus-postgres-exporter-unittest-web-config
- it: Test webConfig with own secret - it: Test config.webConfig.existingSecret
set: set:
config.webConfig.existingSecret.enabled: true config.webConfig.existingSecret.enabled: true
config.webConfig.existingSecret.secretName: web-config-secret config.webConfig.existingSecret.secretName: web-config-secret
@ -147,3 +147,25 @@ tests:
name: prometheus-postgres-exporter-unittest-exporter-config name: prometheus-postgres-exporter-unittest-exporter-config
- secret: - secret:
name: web-config-secret name: web-config-secret
- it: Test additional volumeMounts and volumes
set:
deployment.postgresExporter.volumeMounts:
- name: data
mountPath: /usr/lib/prometheus-postgres-exporter/data
deployment.volumes:
- name: data
hostPath:
path: /usr/lib/prometheus-postgres-exporter/data
asserts:
- contains:
path: spec.template.spec.containers[0].volumeMounts
content:
name: data
mountPath: /usr/lib/prometheus-postgres-exporter/data
- contains:
path: spec.template.spec.volumes
content:
name: data
hostPath:
path: /usr/lib/prometheus-postgres-exporter/data