I have a very long json_query
that looks like this:
resources[?involvedObject.apiVersion == `v1` && involvedObject.kind == `Pod` && involvedObject.name==`my-name`].{ firstTimestamp: firstTimestamp, lastTimestamp: lastTimestamp, count: count, reason: reason, message: message }
I am using it in set_fact
:
- name: Getting events
set_fact:
pod_events: " {{ events | json_query(events_query) }} "
var:
events_query: "resources[?involvedObject.apiVersion == `v1` && involvedObject.kind == `Pod` && involvedObject.name==`my-name`].{ firstTimestamp: firstTimestamp, lastTimestamp: lastTimestamp, count: count, reason: reason, message: message }"
While this works, I'd like to break the query with some newlines for readability. I tried >
as well as >-
and |replace('\n','')
. No matter what I did the newlines in the query always persisted, leading to a broken json_query
.
There has to be a way to break it, right?
After some trials and errors, on which I reproduced an error to the one similar that yours, I guess:
I went back to the JMESPath documentation about filter expressions to realise that the expression is delimited by
[?
and]
and this is quite important because is means that the question mark?
and the opening square bracket[
cannot be separated with a new line or a even a space, otherwise you will face the error here above.Once you have that in mind, you can do your multiline as you wish.
Here would be an example of working playbook:
Yields the recap