Hi, is there a way to escape templating in the job...
# prefect-kubernetes
m
Hi, is there a way to escape templating in the job manifest? I need to have
{{ }}
in the final yaml configuration like
Copy code
annotations:
  key: {{ value}}
But if I add it like that to the job manifest:
Copy code
"annotations": {
  "key": "{{ value }}"
}
the
{{ value }}
gets resolved to an empty value. How can I escape it? đŸ€”
The hack I used - create a variable
value
with a default
{{ value }}
. That way it stays as
{{ value }}
in the rendered YAML.