mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-30 06:29:53 +00:00
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 |