mirror of
https://github.com/bjw-s-labs/helm-charts.git
synced 2025-07-04 17:07:04 +02:00
34 lines
935 B
YAML
34 lines
935 B
YAML
---
|
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/helm-unittest/helm-unittest/main/schema/helm-testsuite.json
|
|
suite: persistence custom
|
|
templates:
|
|
- common.yaml
|
|
values:
|
|
- ../_values/controllers_main_default_container.yaml
|
|
tests:
|
|
- it: custom persistence type should pass
|
|
set:
|
|
persistence:
|
|
custom-mount:
|
|
enabled: true
|
|
type: custom
|
|
volumeSpec:
|
|
downwardAPI:
|
|
items:
|
|
- path: "labels"
|
|
fieldRef:
|
|
fieldPath: metadata.labels
|
|
asserts:
|
|
- documentIndex: 0
|
|
isKind:
|
|
of: Deployment
|
|
- documentIndex: 0
|
|
equal:
|
|
path: spec.template.spec.volumes[0]
|
|
value:
|
|
name: custom-mount
|
|
downwardAPI:
|
|
items:
|
|
- fieldRef:
|
|
fieldPath: metadata.labels
|
|
path: labels
|