New version of salt-formula from Saltstack
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

9 лет назад
9 лет назад
9 лет назад
12345678910111213141516171819202122232425262728293031
  1. {% from "salt/map.jinja" import control with context %}
  2. virt:
  3. nic:
  4. {%- for item_name, item in control.get('net_profile', {}).iteritems() %}
  5. {{ item_name }}:
  6. {%- for iface_name, iface in item.iteritems() %}
  7. {{ iface_name }}:
  8. {%- if iface.bridge is defined %}
  9. bridge: {{ iface.bridge }}
  10. {%- endif %}
  11. {%- if iface.network is defined %}
  12. network: {{ iface.network }}
  13. {%- endif %}
  14. {%- if iface.model is defined %}
  15. model: {{ iface.model }}
  16. {%- endif %}
  17. {%- endfor %}
  18. {%- endfor %}
  19. disk:
  20. {%- for item_name, item in control.get('disk_profile', {}).iteritems() %}
  21. {{ item_name }}:
  22. {%- for disk_name, disk in item.iteritems() %}
  23. - {{ disk }}:
  24. {%- if disk.size is defined %}
  25. size: {{ disk.size }}
  26. {%- endif %}
  27. {%- endfor %}
  28. {%- endfor %}
  29. virt.images: /var/lib/libvirt/images