Using with_items with an "object array" won't work properly. Pongo2's template engine evaluates values into strings. In this case it would return "<[]interface{} Value>". For a standard string array, the henchman code can manually append |join:"," and then do a strings.split(...). For this issue, it may require doing a recursive loop and storing every value into a map before moving forward.
Using with_items with an "object array" won't work properly. Pongo2's template engine evaluates values into strings. In this case it would return "<[]interface{} Value>". For a standard string array, the henchman code can manually append
|join:","
and then do a strings.split(...). For this issue, it may require doing a recursive loop and storing every value into a map before moving forward.