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

9 lines
524B

  1. {%- from "salt/map.jinja" import config with context %}
  2. {%- set cluster = salt['pillar.get']('salt:control:cluster:'+cluster_name) %}
  3. {%- set node = salt['pillar.get']('salt:control:cluster:'+cluster_name+':node:'+node_name) %}
  4. #!/bin/bash
  5. curl --insecure -L http://bootstrap.saltstack.org -o install_salt.sh
  6. sh install_salt.sh
  7. echo "id: {{ node_name }}.{{ cluster.domain }}" > /etc/salt/minion.d/minion.conf
  8. echo "master: salt/master: {{ cluster.config.host }}" >> /etc/salt/minion.d/minion.conf
  9. service salt-minion restart