Saltstack Official Salt Formula
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

README.rst 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. ====
  2. salt
  3. ====
  4. Yes, Salt can Salt itself!
  5. .. note::
  6. See the full `Salt Formulas installation and usage instructions
  7. <http://docs.saltstack.com/en/latest/topics/development/conventions/formulas.html>`_.
  8. Available states
  9. ================
  10. .. contents::
  11. :local:
  12. ``salt.minion``
  13. ---------------
  14. Install a minion
  15. ``salt.master``
  16. ---------------
  17. Install a master.
  18. ``salt.syndic``
  19. ---------------
  20. Install a syndic.
  21. ``salt.cloud``
  22. ---------------
  23. Install salt cloud.
  24. ``salt.ssh``
  25. ------------
  26. Install salt-ssh with roster file.
  27. Configure pillar data under salt:ssh_roster to feed the template.
  28. ``salt.api``
  29. ------------
  30. Install salt api
  31. Requisite: Configure salt-master with rest_cherrypy or rest_tornado.
  32. ``salt.standalone``
  33. -------------------
  34. Install a minion and configure it in `standalone mode
  35. <http://docs.saltstack.com/en/latest/topics/tutorials/standalone_minion.html>`_.
  36. ``salt.pkgrepo``
  37. ----------------
  38. Enable the official saltstack package repository in order to always
  39. benefit from the latest version. This state currently only works on Debian
  40. and Ubuntu, and aims to implement the `installation recommendations of the
  41. official documentation
  42. <http://docs.saltstack.com/en/latest/topics/installation/index.html#platform-specific-installation-instructions>`_.
  43. ``salt.pkgrepo.absent``
  44. -----------------------
  45. Undo the effects of ``salt.pkgrepo``.
  46. ``salt.formulas``
  47. -----------------
  48. Clone selected `Salt formulas
  49. <http://docs.saltstack.com/en/latest/topics/development/conventions/formulas.html>`_
  50. Git repositories under ``/srv/formulas`` and makes them available in the
  51. relevant ``file_roots`` settings. Pillar data can be used to customize all
  52. paths, URLs, etc.
  53. Here's a minimal pillar sample installing two formulas in the base
  54. environment.
  55. ::
  56. salt_formulas:
  57. list:
  58. base:
  59. - salt-formula
  60. - openssh-formula
  61. See pillar.example for an exhaustive list of settings available via pillar. Note
  62. that by default this state:
  63. - downloads the latest formulas from the `saltstack-formulas project
  64. <https://github.com/saltstack-formulas>`_ on GitHub.
  65. - does not update the local repositories after the initial clone.
  66. This is a safety measure since you do not control how the official
  67. repositories evolve.
  68. If you configure the state to download the formulas from repositories that
  69. you control, then you can safely enable the
  70. ``salt_formulas:git_opts:default:update`` pillar setting to ``True``.
  71. ``Configuration``
  72. =================
  73. Every option available in the templates can be set in pillar. Settings under 'salt' will be overridden by more specific settings under ``salt['master']``, ``salt['minion']`` or ``salt['cloud']``
  74. ::
  75. salt:
  76. ret_port: 4506
  77. master:
  78. user: saltuser
  79. ...
  80. minion:
  81. user: saltuser
  82. ...
  83. cloud:
  84. providers: ec2
  85. ...
  86. ``Extending``
  87. =============
  88. Additional templates can be added by the user under salt/files/minion.d and master.d. This might be useful if, for example, a recently-added configuration option is not yet provided by the default template.
  89. ``Vagrant``
  90. ===========
  91. Executing the provided `Vagrantfile <http://www.vagrantup.com/>`_ will create a Ubuntu 14.04 VM, add the default Saltstack Repository and install the current stable version.
  92. The folders inside the VM will be set up in a way that enables you to simply execute 'sudo salt "*" state.highstate' to apply the salt formula to the VM, using the pillar.example config. You can check /etc/salt/ for results.
  93. Remember, you will have to run ``state.highstate`` or ``state.sls salt.(master|minion|cloud)`` manually.