[stress testing] Investigate/fix/document object type mapping for matrix
Open
Central-EngSys
Stress
- Dominant language
- C#
- Stars
- 135
- Forks
- 260
- Avg merge
- 1d 22h
- Merged PRs (30d)
- 115
Description
There are cases where we may want to define, or at least document clear behavior, on how matrix yaml types translate to helm chart yaml types. For example, command args:
```
# matrix
matrix:
scenarios:
Test1:
command: bash
args:
- -c
- sleep 3600
# helm pod chart
template:
spec:
containers:
- image: busybox
command: {{ .Stress.command }}
args: {{ .Stress.args }} # array type
```
CC @ckairen @richardpark-msft
Contributor guide
Assessment
This issue has not been assessed yet.