mirror of
https://github.com/bjw-s-labs/helm-charts.git
synced 2025-07-04 08:57:04 +02:00
64 lines
1.5 KiB
YAML
64 lines
1.5 KiB
YAML
---
|
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/helm-unittest/helm-unittest/main/schema/helm-testsuite.json
|
|
suite: persistence emptydir
|
|
templates:
|
|
- common.yaml
|
|
values:
|
|
- ../_values/controllers_main_default_container.yaml
|
|
tests:
|
|
- it: default emptyDir should pass
|
|
set:
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
type: emptyDir
|
|
asserts:
|
|
- documentIndex: 0
|
|
isKind:
|
|
of: Deployment
|
|
- documentIndex: 0
|
|
equal:
|
|
path: spec.template.spec.volumes[0]
|
|
value:
|
|
name: config
|
|
emptyDir: {}
|
|
|
|
- it: emptyDir with medium should pass
|
|
set:
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
type: emptyDir
|
|
medium: memory
|
|
asserts:
|
|
- documentIndex: 0
|
|
isKind:
|
|
of: Deployment
|
|
- documentIndex: 0
|
|
equal:
|
|
path: spec.template.spec.volumes[0]
|
|
value:
|
|
name: config
|
|
emptyDir:
|
|
medium: memory
|
|
|
|
- it: emptyDir with medium and sizeLimit should pass
|
|
set:
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
type: emptyDir
|
|
medium: memory
|
|
sizeLimit: 1Gi
|
|
asserts:
|
|
- documentIndex: 0
|
|
isKind:
|
|
of: Deployment
|
|
- documentIndex: 0
|
|
equal:
|
|
path: spec.template.spec.volumes[0]
|
|
value:
|
|
name: config
|
|
emptyDir:
|
|
medium: memory
|
|
sizeLimit: 1Gi
|