Open brenwhyte opened 6 years ago
@brenwhyte same here, did you find a workaround?
I had the same issue. The reason for this was my pillar setup: I had to make sure, that all pillar entries are dictionaries.
To debug this I pushed this template file via file.managed to /tmp/test
{%- for service_name, service in pillar.items() %}
{{ service_name }} - {{ service }}
{%- endfor %}
You need to make sure that there a no entries like:
name - ["asdf"]
or name - asdf
.
This formular only supports name - {"asdf":42}
The reason for this is service.get(...)
where service is a string or an array or anything not a dictionary.
Applying #4 should fix the issue
Getting the below render error from Salt.
Basic pillar file:
Any thoughts?