Your setup
Formula commit hash / release tag
latest
Versions reports (master & minion)
3005.1
Pillar / config used
pillar a:
pillar b:
Bug details
Describe the bug
Currently, due to the ways that pillars are merged (saltstack/salt#28394, saltstack-formulas/zabbix-formula#60), one of the networks will get overwritten, resulting in the config passed to the formula as
Instead of
docker:
networks:
- a
- b
Steps to reproduce the bug
Attempt to apply the formula with pillars as above.
Expected behaviour
Passed config is:
docker:
networks:
- a
- b
Attempts to fix the bug
Bug can be fixed easily by using dicts instead. Defining the pillars as:
pillar a:
pillar b:
gives the correct config passed with
Your setup
Formula commit hash / release tag
latestVersions reports (master & minion)
3005.1Pillar / config used
pillar a:
pillar b:
Bug details
Describe the bug
Currently, due to the ways that pillars are merged (saltstack/salt#28394, saltstack-formulas/zabbix-formula#60), one of the networks will get overwritten, resulting in the config passed to the formula as
Instead of
Steps to reproduce the bug
Attempt to apply the formula with pillars as above.
Expected behaviour
Passed config is:
Attempts to fix the bug
Bug can be fixed easily by using dicts instead. Defining the pillars as:
pillar a:
pillar b:
gives the correct config passed with