MichaĆ Wysocki
11/29/2023, 9:30 AM{{ }}
in the final yaml configuration like
annotations:
key: {{ value}}
But if I add it like that to the job manifest:
"annotations": {
"key": "{{ value }}"
}
the {{ value }}
gets resolved to an empty value.
How can I escape it? đ€MichaĆ Wysocki
11/29/2023, 10:48 AMvalue
with a default {{ value }}
.
That way it stays as {{ value }}
in the rendered YAML.