mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
8f1a20c0d3
If key ends in "+" the value of the key is appended to previous values found. If values are string instead of a slice they are automatically converted to a slice of one string. Signed-off-by: Darren Shepherd <darren@rancher.com>
14 lines
118 B
YAML
14 lines
118 B
YAML
foo-bar: get-overriden
|
|
a-slice:
|
|
- 1
|
|
- "1.5"
|
|
- "2"
|
|
- ""
|
|
- three
|
|
b-string: one
|
|
c-slice:
|
|
- one
|
|
- two
|
|
d-slice:
|
|
- one
|
|
- two |