|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420 |
-
- ============
- Salt Formula
- ============
-
- 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.
-
- Salt delivers a dynamic communication bus for infrastructures that can be used
- for orchestration, remote execution, configuration management and much more.
-
-
- Sample Metadata
- ===============
-
-
- Salt master
- -----------
-
- Salt master with base formulas and pillar metadata backend
-
- .. literalinclude:: tests/pillar/master_single_pillar.sls
- :language: yaml
-
- Salt master with reclass ENC metadata backend
-
- .. literalinclude:: tests/pillar/master_single_reclass.sls
- :language: yaml
-
- Salt master with API
-
- .. literalinclude:: tests/pillar/master_api.sls
- :language: yaml
-
- Salt master with defined user ACLs
-
- .. literalinclude:: tests/pillar/master_acl.sls
- :language: yaml
-
- Salt master with preset minions
-
- .. code-block:: yaml
-
- salt:
- master:
- enabled: true
- minions:
- - name: 'node1.system.location.domain.com'
-
- Salt master with pip based installation (optional)
-
- .. code-block:: yaml
-
- salt:
- master:
- enabled: true
- ...
- source:
- engine: pip
- version: 2016.3.0rc2
-
- Install formula through system package management
-
- .. code-block:: yaml
-
- salt:
- master:
- enabled: true
- ...
- environment:
- prd:
- keystone:
- source: pkg
- name: salt-formula-keystone
- nova:
- source: pkg
- name: salt-formula-keystone
- version: 0.1+0~20160818133412.24~1.gbp6e1ebb
- postresql:
- source: pkg
- name: salt-formula-postgresql
- version: purged
-
- Formula keystone is installed latest version and the formulas without version are installed in one call to aptpkg module.
- If the version attribute is present sls iterates over formulas and take action to install specific version or remove it.
- The version attribute may have these values ``[latest|purged|removed|<VERSION>]``.
-
- Clone master branch of keystone formula as local feature branch
-
- .. code-block:: yaml
-
- salt:
- master:
- enabled: true
- ...
- environment:
- dev:
- formula:
- keystone:
- source: git
- address: git@github.com:openstack/salt-formula-keystone.git
- revision: master
- branch: feature
-
- Salt master with specified formula refs (for example for Gerrit review)
-
- .. code-block:: yaml
-
- salt:
- master:
- enabled: true
- ...
- environment:
- dev:
- formula:
- keystone:
- source: git
- address: https://git.openstack.org/openstack/salt-formula-keystone
- revision: refs/changes/56/123456/1
-
- Salt master with logging handlers
-
- .. code-block:: yaml
-
- salt:
- master:
- enabled: true
- handler:
- handler01:
- engine: udp
- bind:
- host: 127.0.0.1
- port: 9999
- minion:
- handler:
- handler01:
- engine: udp
- bind:
- host: 127.0.0.1
- port: 9999
- handler02:
- engine: zmq
- bind:
- host: 127.0.0.1
- port: 9999
-
- Salt master peer setup for remote certificate signing
-
- .. code-block:: yaml
-
- salt:
- master:
- peer:
- ".*":
- - x509.sign_remote_certificate
-
- Configure verbosity of state output (used for `salt` command)
-
- .. code-block:: yaml
-
- salt:
- master:
- state_output: changes
-
- Salt Reactor system configuration
-
- .. code-block:: yaml
-
- salt:
- master:
- reactor:
- salt/minion/*/start:
- - salt://reactor/minion-started.sls
-
-
- Salt syndic
- -----------
-
- The master of masters
-
- .. code-block:: yaml
-
- salt:
- master:
- enabled: true
- order_masters: True
-
- Lower syndicated master
-
- .. code-block:: yaml
-
- salt:
- syndic:
- enabled: true
- master:
- host: master-of-master-host
- timeout: 5
-
- Syndicated master with multiple master of masters
-
- .. code-block:: yaml
-
- salt:
- syndic:
- enabled: true
- masters:
- - host: master-of-master-host1
- - host: master-of-master-host2
- timeout: 5
-
-
- Salt-minion proxy
- -----------------
-
- Salt proxy pillar
-
- .. code-block:: yaml
-
- salt:
- minion:
- proxy_minion:
- master: localhost
- device:
- vsrx01.mydomain.local:
- enabled: true
- engine: napalm
- csr1000v.mydomain.local:
- enabled: true
- engine: napalm
-
- .. note:: This is pillar of the the real salt-minion
-
-
- Proxy pillar for IOS device
-
- .. code-block:: yaml
-
- proxy:
- proxytype: napalm
- driver: ios
- host: csr1000v.mydomain.local
- username: root
- passwd: r00tme
-
- .. note:: This is pillar of the node thats not able to run salt-minion itself
-
-
- Proxy pillar for JunOS device
-
- .. code-block:: yaml
-
- proxy:
- proxytype: napalm
- driver: junos
- host: vsrx01.mydomain.local
- username: root
- passwd: r00tme
- optional_args:
- config_format: set
-
- .. note:: This is pillar of the node thats not able to run salt-minion itself
-
-
- Salt SSH
- --------
-
- Salt SSH with sudoer using key
-
- .. literalinclude:: tests/pillar/master_ssh_minion_key.sls
- :language: yaml
-
- Salt SSH with sudoer using password
-
- .. literalinclude:: tests/pillar/master_ssh_minion_password.sls
- :language: yaml
-
- Salt SSH with root using password
-
- .. literalinclude:: tests/pillar/master_ssh_minion_root.sls
- :language: yaml
-
-
- Salt minion
- -----------
-
- Simplest Salt minion setup with central configuration node
-
- .. code-block:: yaml
-
- .. literalinclude:: tests/pillar/minion_master.sls
- :language: yaml
-
- Multi-master Salt minion setup
-
- .. literalinclude:: tests/pillar/minion_multi_master.sls
- :language: yaml
-
- Salt minion with salt mine options
-
- .. literalinclude:: tests/pillar/minion_mine.sls
- :language: yaml
-
- Salt minion with graphing dependencies
-
- .. literalinclude:: tests/pillar/minion_graph.sls
- :language: yaml
-
- Salt minion behind HTTP proxy
-
- .. code-block:: yaml
-
- salt:
- minion:
- proxy:
- host: 127.0.0.1
- port: 3128
-
- Salt minion with PKI certificate authority (CA)
-
- .. literalinclude:: tests/pillar/minion_pki_ca.sls
- :language: yaml
-
- Salt minion using PKI certificate
-
- .. literalinclude:: tests/pillar/minion_pki_cert.sls
- :language: yaml
-
-
- Salt control (cloud/kvm/docker)
- -------------------------------
-
- Salt cloud with local OpenStack provider
-
- .. literalinclude:: tests/pillar/control_cloud_openstack.sls
- :language: yaml
-
- Salt cloud with Digital Ocean provider
-
- .. literalinclude:: tests/pillar/control_cloud_digitalocean.sls
- :language: yaml
-
- Salt virt with KVM cluster
-
- .. literalinclude:: tests/pillar/control_virt.sls
- :language: yaml
-
-
- Usage
- =====
-
- Working with salt-cloud
-
- .. code-block:: bash
-
- salt-cloud -m /path/to/map --assume-yes
-
- Debug LIBCLOUD for salt-cloud connection
-
- .. code-block:: bash
-
- export LIBCLOUD_DEBUG=/dev/stderr; salt-cloud --list-sizes provider_name --log-level all
-
-
- More Information
- ================
-
- * http://salt.readthedocs.org/en/latest/
- * https://github.com/DanielBryan/salt-state-graph
- * http://karlgrz.com/testing-salt-states-rapidly-with-docker/
- * https://mywushublog.com/2013/03/configuration-management-with-salt-stack/
- * http://russell.ballestrini.net/replace-the-nagios-scheduler-and-nrpe-with-salt-stack/
- * https://github.com/saltstack-formulas/salt-formula
- * http://docs.saltstack.com/en/latest/topics/tutorials/multimaster.html
-
-
- salt-cloud
- ----------
-
- * http://www.blog.sandro-mathys.ch/2013/07/setting-user-password-when-launching.html
- * http://cloudinit.readthedocs.org/en/latest/topics/examples.html
- * http://salt-cloud.readthedocs.org/en/latest/topics/install/index.html
- * http://docs.saltstack.com/topics/cloud/digitalocean.html
- * http://salt-cloud.readthedocs.org/en/latest/topics/rackspace.html
- * http://salt-cloud.readthedocs.org/en/latest/topics/map.html
- * http://docs.saltstack.com/en/latest/topics/tutorials/multimaster.html
-
-
- Documentation and Bugs
- ======================
-
- To learn how to install and update salt-formulas, consult the documentation
- available online at:
-
- http://salt-formulas.readthedocs.io/
-
- In the unfortunate event that bugs are discovered, they should be reported to
- the appropriate issue tracker. Use Github issue tracker for specific salt
- formula:
-
- https://github.com/salt-formulas/salt-formula-salt/issues
-
- For feature requests, bug reports or blueprints affecting entire ecosystem,
- use Launchpad salt-formulas project:
-
- https://launchpad.net/salt-formulas
-
- You can also join salt-formulas-users team and subscribe to mailing list:
-
- https://launchpad.net/~salt-formulas-users
-
- Developers wishing to work on the salt-formulas projects should always base
- their work on master branch and submit pull request against specific formula.
-
- https://github.com/salt-formulas/salt-formula-salt
-
- Any questions or feedback is always welcome so feel free to join our IRC
- channel:
-
- #salt-formulas @ irc.freenode.net
|