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>
10 lines
95 B
YAML
10 lines
95 B
YAML
foo-bar: bar-foo
|
|
b-string+: two
|
|
c-slice+:
|
|
- three
|
|
d-slice:
|
|
- three
|
|
- four
|
|
e-slice+:
|
|
- one
|
|
- two |