Illustrates how concatenating with the plus operator can lead to a Starlark error.
$ ytt -f concat-with-plus.yml -f values.yml
- unknown binary op: string + int
in <toplevel>
concat-with-plus.yml:3 | x: #@ data.values.a + data.values.b
Illustrates how concatenating with the plus operator can lead to a Starlark error.
$ ytt -f concat-with-plus.yml -f values.yml
- unknown binary op: string + int
in <toplevel>
concat-with-plus.yml:3 | x: #@ data.values.a + data.values.b
#@ load("@ytt:data", "data") | |
x: #@ data.values.a + data.values.b |
#@data/values | |
--- | |
a: Some String | |
b: 15 |