mirror of
https://github.com/bjw-s-labs/helm-charts.git
synced 2025-07-03 16:37:04 +02:00
41 lines
883 B
YAML
41 lines
883 B
YAML
suite: container args override
|
|
templates:
|
|
- common.yaml
|
|
tests:
|
|
- it: default should pass
|
|
asserts:
|
|
- documentIndex: 0
|
|
isKind:
|
|
of: Deployment
|
|
- documentIndex: 0
|
|
isNull:
|
|
path: spec.template.spec.containers[0].args
|
|
|
|
- it: single string should pass
|
|
set:
|
|
args: sleep infinity
|
|
asserts:
|
|
- documentIndex: 0
|
|
isKind:
|
|
of: Deployment
|
|
- documentIndex: 0
|
|
equal:
|
|
path: spec.template.spec.containers[0].args
|
|
value:
|
|
- sleep infinity
|
|
|
|
- it: list of strings should pass
|
|
set:
|
|
args:
|
|
- sleep
|
|
- infinity
|
|
asserts:
|
|
- documentIndex: 0
|
|
isKind:
|
|
of: Deployment
|
|
- documentIndex: 0
|
|
equal:
|
|
path: spec.template.spec.containers[0].args
|
|
value:
|
|
- sleep
|
|
- infinity
|