helm-charts/charts/other/kah-common-chart/tests/pod/initcontainers_test.yaml
Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs 4863146ad9
More paving the way
2022-07-27 20:03:28 +02:00

45 lines
1 KiB
YAML

suite: pod initContainers
templates:
- common.yaml
tests:
- it: with explicit name should pass
set:
initContainers:
init1:
name: template-test
asserts:
- documentIndex: 0
isKind:
of: Deployment
- documentIndex: 0
equal:
path: spec.template.spec.initContainers[0].name
value: template-test
- it: with implicit name should pass
set:
initContainers:
init1:
image: template-test
asserts:
- documentIndex: 0
isKind:
of: Deployment
- documentIndex: 0
equal:
path: spec.template.spec.initContainers[0].name
value: init1
- it: with templated name should pass
set:
initContainers:
init1:
name: "{{ .Release.Name }}-container"
asserts:
- documentIndex: 0
isKind:
of: Deployment
- documentIndex: 0
equal:
path: spec.template.spec.initContainers[0].name
value: RELEASE-NAME-container