123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- suite: container tty and stdin test
- templates:
- - common.yaml
- tests:
- - it: should pass without tty and stdin
- set:
- image: &image
- repository: nginx
- tag: 1.19.0
- pullPolicy: IfNotPresent
- workload:
- workload-name:
- enabled: true
- primary: true
- type: Deployment
- podSpec:
- containers:
- container-name1:
- enabled: true
- primary: true
- imageSelector: image
- probes: &probes
- liveness:
- enabled: false
- readiness:
- enabled: false
- startup:
- enabled: false
- asserts:
- - documentIndex: &deploymentDoc 0
- isKind:
- of: Deployment
- - documentIndex: *deploymentDoc
- isAPIVersion:
- of: apps/v1
- - documentIndex: *deploymentDoc
- isSubset:
- path: spec.template.spec.containers[0]
- content:
- tty: false
- stdin: false
- - it: should pass with tty and stdin enabled
- set:
- image: *image
- workload:
- workload-name:
- enabled: true
- primary: true
- type: Deployment
- podSpec:
- containers:
- container-name1:
- enabled: true
- primary: true
- imageSelector: image
- probes: *probes
- tty: true
- stdin: true
- asserts:
- - documentIndex: &deploymentDoc 0
- isKind:
- of: Deployment
- - documentIndex: *deploymentDoc
- isAPIVersion:
- of: apps/v1
- - documentIndex: *deploymentDoc
- isSubset:
- path: spec.template.spec.containers[0]
- content:
- tty: true
- stdin: true
|