New version of salt-formula from Saltstack
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sphinx.yml 721B

9 jaren geleden
9 jaren geleden
12345678910111213141516171819
  1. name: Salt
  2. description: Salt is a new approach to infrastructure management. Easy enough to get running in minutes, scalable enough to manage tens of thousands of servers, and fast enough to communicate with them in seconds.
  3. role:
  4. {%- if pillar.salt.minion is defined %}
  5. {%- from "salt/map.jinja" import minion with context %}
  6. minion:
  7. name: minion
  8. param:
  9. version:
  10. value: {{ salt['cmd.run']('salt-minion --version')|replace('salt-minion ', '') }}
  11. {%- endif %}
  12. {%- if pillar.salt.master is defined %}
  13. {%- from "salt/map.jinja" import master with context %}
  14. master:
  15. name: master
  16. param:
  17. version:
  18. value: {{ salt['cmd.run']('salt --version')|replace('salt ', '') }}
  19. {%- endif %}