New Saltstack Salt formula
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.

README.rst 19KB

9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837
  1. ============
  2. Salt Formula
  3. ============
  4. Salt is a new approach to infrastructure management. Easy enough to get
  5. running in minutes, scalable enough to manage tens of thousands of servers,
  6. and fast enough to communicate with them in seconds.
  7. Salt delivers a dynamic communication bus for infrastructures that can be used
  8. for orchestration, remote execution, configuration management and much more.
  9. Sample Metadata
  10. ===============
  11. Salt Master
  12. -----------
  13. Salt master with base formulas and pillar metadata backend
  14. .. literalinclude:: tests/pillar/master_single_pillar.sls
  15. :language: yaml
  16. Salt master with reclass ENC metadata backend
  17. .. literalinclude:: tests/pillar/master_single_reclass.sls
  18. :language: yaml
  19. Salt master with Architect ENC metadata backend
  20. .. code-block:: yaml
  21. salt:
  22. master:
  23. enabled: true
  24. pillar:
  25. engine: architect
  26. project: project-name
  27. host: architect-api
  28. port: 8181
  29. username: salt
  30. password: password
  31. Salt master with multiple ext_pillars
  32. .. literalinclude:: tests/pillar/master_single_extpillars.sls
  33. :language: yaml
  34. Salt master with API
  35. .. literalinclude:: tests/pillar/master_api.sls
  36. :language: yaml
  37. Salt master with defined user ACLs
  38. .. literalinclude:: tests/pillar/master_acl.sls
  39. :language: yaml
  40. Salt master with preset minions
  41. .. code-block:: yaml
  42. salt:
  43. master:
  44. enabled: true
  45. minions:
  46. - name: 'node1.system.location.domain.com'
  47. Salt master with pip based installation (optional)
  48. .. code-block:: yaml
  49. salt:
  50. master:
  51. enabled: true
  52. ...
  53. source:
  54. engine: pip
  55. version: 2016.3.0rc2
  56. Install formula through system package management
  57. .. code-block:: yaml
  58. salt:
  59. master:
  60. enabled: true
  61. ...
  62. environment:
  63. prd:
  64. keystone:
  65. source: pkg
  66. name: salt-formula-keystone
  67. nova:
  68. source: pkg
  69. name: salt-formula-keystone
  70. version: 0.1+0~20160818133412.24~1.gbp6e1ebb
  71. postresql:
  72. source: pkg
  73. name: salt-formula-postgresql
  74. version: purged
  75. Formula keystone is installed latest version and the formulas without version are installed in one call to aptpkg module.
  76. If the version attribute is present sls iterates over formulas and take action to install specific version or remove it.
  77. The version attribute may have these values ``[latest|purged|removed|<VERSION>]``.
  78. Clone master branch of keystone formula as local feature branch
  79. .. code-block:: yaml
  80. salt:
  81. master:
  82. enabled: true
  83. ...
  84. environment:
  85. dev:
  86. formula:
  87. keystone:
  88. source: git
  89. address: git@github.com:openstack/salt-formula-keystone.git
  90. revision: master
  91. branch: feature
  92. Salt master with specified formula refs (for example for Gerrit review)
  93. .. code-block:: yaml
  94. salt:
  95. master:
  96. enabled: true
  97. ...
  98. environment:
  99. dev:
  100. formula:
  101. keystone:
  102. source: git
  103. address: https://git.openstack.org/openstack/salt-formula-keystone
  104. revision: refs/changes/56/123456/1
  105. Salt master logging configuration
  106. .. code-block:: yaml
  107. salt:
  108. master:
  109. enabled: true
  110. log:
  111. level: warning
  112. file: '/var/log/salt/master'
  113. level_logfile: warning
  114. Salt minion logging configuration
  115. .. code-block:: yaml
  116. salt:
  117. minion:
  118. enabled: true
  119. log:
  120. level: info
  121. file: '/var/log/salt/minion'
  122. level_logfile: warning
  123. Salt master with logging handlers
  124. .. code-block:: yaml
  125. salt:
  126. master:
  127. enabled: true
  128. handler:
  129. handler01:
  130. engine: udp
  131. bind:
  132. host: 127.0.0.1
  133. port: 9999
  134. minion:
  135. handler:
  136. handler01:
  137. engine: udp
  138. bind:
  139. host: 127.0.0.1
  140. port: 9999
  141. handler02:
  142. engine: zmq
  143. bind:
  144. host: 127.0.0.1
  145. port: 9999
  146. Salt engine definition for saltgraph metadata collector
  147. .. code-block:: yaml
  148. salt:
  149. master:
  150. engine:
  151. graph_metadata:
  152. engine: saltgraph
  153. host: 127.0.0.1
  154. port: 5432
  155. user: salt
  156. password: salt
  157. database: salt
  158. Salt engine definition for Architect service
  159. .. code-block:: yaml
  160. salt:
  161. master:
  162. engine:
  163. architect:
  164. engine: architect
  165. project: project-name
  166. host: architect-api
  167. port: 8181
  168. username: salt
  169. password: password
  170. Salt engine definition for sending events from docker events
  171. .. code-block:: yaml
  172. salt:
  173. master:
  174. engine:
  175. docker_events:
  176. docker_url: unix://var/run/docker.sock
  177. Salt master peer setup for remote certificate signing
  178. .. code-block:: yaml
  179. salt:
  180. master:
  181. peer:
  182. ".*":
  183. - x509.sign_remote_certificate
  184. Salt master backup configuration
  185. .. code-block:: yaml
  186. salt:
  187. master:
  188. backup: true
  189. initial_data:
  190. engine: backupninja
  191. home_dir: remote-backup-home-dir
  192. source: backup-node-host
  193. host: original-salt-master-id
  194. Configure verbosity of state output (used for `salt` command)
  195. .. code-block:: yaml
  196. salt:
  197. master:
  198. state_output: changes
  199. Pass pillar render error to minion log
  200. .. note:: When set to `False` this option is great for debuging.
  201. However it is not recomended for any production environment as it may contain
  202. templating data as passwords, etc... , that minion should not expose.
  203. .. code-block:: yaml
  204. salt:
  205. master:
  206. pillar_safe_render_error: False
  207. Enable Windows repo support
  208. .. code-block:: yaml
  209. salt:
  210. master:
  211. win_repo:
  212. source: git
  213. address: https://github.com/saltstack/salt-winrepo-ng
  214. revision: master
  215. Event/Reactor Systems
  216. ~~~~~~~~~~~~~~~~~~~~~
  217. Salt synchronise node pillar and modules after start
  218. .. code-block:: yaml
  219. salt:
  220. master:
  221. reactor:
  222. salt/minion/*/start:
  223. - salt://salt/reactor/node_start.sls
  224. Trigger basic node install
  225. .. code-block:: yaml
  226. salt:
  227. master:
  228. reactor:
  229. salt/minion/install:
  230. - salt://salt/reactor/node_install.sls
  231. Sample event to trigger the node installation
  232. .. code-block:: bash
  233. salt-call event.send 'salt/minion/install'
  234. Run any defined orchestration pipeline
  235. .. code-block:: yaml
  236. salt:
  237. master:
  238. reactor:
  239. salt/orchestrate/start:
  240. - salt://salt/reactor/orchestrate_start.sls
  241. Event to trigger the orchestration pipeline
  242. .. code-block:: bash
  243. salt-call event.send 'salt/orchestrate/start' "{'orchestrate': 'salt/orchestrate/infra_install.sls'}"
  244. Synchronise modules and pillars on minion start.
  245. .. code-block:: yaml
  246. salt:
  247. master:
  248. reactor:
  249. 'salt/minion/*/start':
  250. - salt://salt/reactor/minion_start.sls
  251. Add and/or remove the minion key
  252. .. code-block:: yaml
  253. salt:
  254. master:
  255. reactor:
  256. salt/key/create:
  257. - salt://salt/reactor/key_create.sls
  258. salt/key/remove:
  259. - salt://salt/reactor/key_remove.sls
  260. Event to trigger the key creation
  261. .. code-block:: bash
  262. salt-call event.send 'salt/key/create' \
  263. > "{'node_id': 'id-of-minion', 'node_host': '172.16.10.100', 'orch_post_create': 'kubernetes.orchestrate.compute_install', 'post_create_pillar': {'node_name': 'id-of-minion'}}"
  264. .. note::
  265. You can add pass additional `orch_pre_create`, `orch_post_create`,
  266. `orch_pre_remove` or `orch_post_remove` parameters to the event to call
  267. extra orchestrate files. This can be useful for example for
  268. registering/unregistering nodes from the monitoring alarms or dashboards.
  269. The key creation event needs to be run from other machine than the one
  270. being registered.
  271. Event to trigger the key removal
  272. .. code-block:: bash
  273. salt-call event.send 'salt/key/remove'
  274. Control VM provisioning
  275. .. code-block:: yaml
  276. virt:
  277. disk:
  278. three_disks:
  279. - system:
  280. size: 4096
  281. image: ubuntu.qcow
  282. - repository_snapshot:
  283. size: 8192
  284. image: snapshot.qcow
  285. - cinder-volume:
  286. size: 2048
  287. nic:
  288. control:
  289. - name: nic01
  290. bridge: br-pxe
  291. model: virtio
  292. - name: nic02
  293. bridge: br-cp
  294. model: virtio
  295. - name: nic03
  296. bridge: br-store-front
  297. model: virtio
  298. - name: nic04
  299. bridge: br-public
  300. model: virtio
  301. salt:
  302. control:
  303. enabled: true
  304. virt_enabled: true
  305. size:
  306. medium_three_disks:
  307. cpu: 2
  308. ram: 4
  309. disk_profile: three_disks
  310. cluster:
  311. mycluster:
  312. domain: neco.virt.domain.com
  313. engine: virt
  314. #Option to set rng globaly
  315. rng: false
  316. node:
  317. ubuntu1:
  318. provider: node01.domain.com
  319. image: ubuntu.qcow
  320. size: medium
  321. img_dest: /var/lib/libvirt/ssdimages
  322. #Rng defined on node will have higher priority then global one
  323. rng:
  324. backend: /dev/urandom
  325. model: random
  326. rate:
  327. period: '1800'
  328. bytes: '1500'
  329. mac:
  330. nic01: AC:DE:48:AA:AA:AA
  331. nic02: AC:DE:48:AA:AA:BB
  332. Jinja options
  333. -------------
  334. Use following options to update default jinja renderer options. Salt recognize Jinja options for templates and for sls files.
  335. For full list of options check jinja documentation: http://jinja.pocoo.org/docs/api/#high-level-api.
  336. .. code-block:: yaml
  337. salt:
  338. renderer:
  339. # for templates
  340. jinja: &jina_env
  341. # Default Jinja environment options
  342. block_start_string: '{%'
  343. block_end_string: '%}'
  344. variable_start_string: '{{'
  345. variable_end_string: '}}'
  346. comment_start_string: '{#'
  347. comment_end_string: '#}'
  348. keep_trailing_newline: False
  349. newline_sequence: '\n'
  350. # Next two are enabled by default in Salt
  351. trim_blocks: True
  352. lstrip_blocks: True
  353. # Next two are not enabled by default in Salt
  354. # but worth to consider to enable in future for salt-formulas
  355. line_statement_prefix: '%'
  356. line_comment_prefix: '##'
  357. # for .sls state files
  358. jinja_sls: *jinja_env
  359. With the line_statement/comment* _prefix options enabled following code statements are valid:
  360. .. code-block:: yaml
  361. %- set myvar = 'one'
  362. ## You can mix even with '{%'
  363. {%- set myvar = 'two' %} ## comment
  364. %- set mylist = ['one', 'two', 'three'] ## comment
  365. ## comment
  366. %- for item in mylist: ## comment
  367. {{- item }}
  368. %- endfor
  369. Encrypted pillars
  370. ~~~~~~~~~~~~~~~~~
  371. Note: NACL + below configuration will be available in Salt > 2017.7.
  372. External resources:
  373. - Tutorial to configure salt + reclass ext_pillar and nacl: http://apealive.net/post/2017-09-salt-nacl-ext-pillar/
  374. - Saltstack documentation: https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.nacl.html
  375. Configure salt NACL module:
  376. .. code-block:: shell
  377. pip install --upgrade libnacl===1.5.2
  378. salt-call --local nacl.keygen /etc/salt/pki/master/nacl
  379. local:
  380. saved sk_file:/etc/salt/pki/master/nacl pk_file: /etc/salt/pki/master/nacl.pub
  381. .. code-block:: yaml
  382. salt:
  383. master:
  384. pillar:
  385. reclass: *reclass
  386. nacl:
  387. index: 99
  388. nacl:
  389. box_type: sealedbox
  390. sk_file: /etc/salt/pki/master/nacl
  391. pk_file: /etc/salt/pki/master/nacl.pub
  392. #sk: None
  393. #pk: None
  394. NACL encrypt secrets:
  395. salt-call --local nacl.enc 'my_secret_value' pk_file=/etc/salt/pki/master/nacl.pub
  396. hXTkJpC1hcKMS7yZVGESutWrkvzusXfETXkacSklIxYjfWDlMJmR37MlmthdIgjXpg4f2AlBKb8tc9Woma7q
  397. # or
  398. salt-run nacl.enc 'myotherpass'
  399. ADDFD0Rav6p6+63sojl7Htfrncp5rrDVyeE4BSPO7ipq8fZuLDIVAzQLf4PCbDqi+Fau5KD3/J/E+Pw=
  400. NACL encrypted values on pillar:
  401. Use Boxed syntax `NACL[CryptedValue=]` to encode value on pillar:
  402. .. code-block:: yaml
  403. my_pillar:
  404. my_nacl:
  405. key0: unencrypted_value
  406. key1: NACL[hXTkJpC1hcKMS7yZVGESutWrkvzusXfETXkacSklIxYjfWDlMJmR37MlmthdIgjXpg4f2AlBKb8tc9Woma7q]
  407. NACL large files:
  408. .. code-block:: shell
  409. salt-call nacl.enc_file /tmp/cert.crt out=/srv/salt/env/dev/cert.nacl
  410. # or more advanced
  411. cert=$(cat /tmp/cert.crt)
  412. salt-call --out=newline_values_only nacl.enc_pub data="$cert" > /srv/salt/env/dev/cert.nacl
  413. NACL within template/native pillars:
  414. pillarexample:
  415. user: root
  416. password1: {{salt.nacl.dec('DRB7Q6/X5gGSRCTpZyxS6hlbWj0llUA+uaVyvou3vJ4=')|json}}
  417. cert_key: {{salt.nacl.dec_file('/srv/salt/env/dev/certs/example.com/cert.nacl')|json}}
  418. cert_key2: {{salt.nacl.dec_file('salt:///certs/example.com/cert2.nacl')|json}}
  419. Salt Syndic
  420. -----------
  421. The master of masters
  422. .. code-block:: yaml
  423. salt:
  424. master:
  425. enabled: true
  426. order_masters: True
  427. Lower syndicated master
  428. .. code-block:: yaml
  429. salt:
  430. syndic:
  431. enabled: true
  432. master:
  433. host: master-of-master-host
  434. timeout: 5
  435. Syndicated master with multiple master of masters
  436. .. code-block:: yaml
  437. salt:
  438. syndic:
  439. enabled: true
  440. masters:
  441. - host: master-of-master-host1
  442. - host: master-of-master-host2
  443. timeout: 5
  444. Salt Minion
  445. -----------
  446. Simplest Salt minion setup with central configuration node
  447. .. code-block:: yaml
  448. .. literalinclude:: tests/pillar/minion_master.sls
  449. :language: yaml
  450. Multi-master Salt minion setup
  451. .. literalinclude:: tests/pillar/minion_multi_master.sls
  452. :language: yaml
  453. Salt minion with salt mine options
  454. .. literalinclude:: tests/pillar/minion_mine.sls
  455. :language: yaml
  456. Salt minion with graphing dependencies
  457. .. literalinclude:: tests/pillar/minion_graph.sls
  458. :language: yaml
  459. Salt minion behind HTTP proxy
  460. .. code-block:: yaml
  461. salt:
  462. minion:
  463. proxy:
  464. host: 127.0.0.1
  465. port: 3128
  466. Salt minion to specify non-default HTTP backend. The default tornado backend
  467. does not respect HTTP proxy settings set as environment variables. This is
  468. useful for cases where you need to set no_proxy lists.
  469. .. code-block:: yaml
  470. salt:
  471. minion:
  472. backend: urllib2
  473. Salt minion with PKI certificate authority (CA)
  474. .. literalinclude:: tests/pillar/minion_pki_ca.sls
  475. :language: yaml
  476. Salt minion using PKI certificate
  477. .. literalinclude:: tests/pillar/minion_pki_cert.sls
  478. :language: yaml
  479. Salt minion trust CA certificates issued by salt CA on a specific host (ie: salt-master node)
  480. .. code-block:: yaml
  481. salt:
  482. minion:
  483. trusted_ca_minions:
  484. - cfg01
  485. Salt Minion Proxy
  486. ~~~~~~~~~~~~~~~~~
  487. Salt proxy pillar
  488. .. code-block:: yaml
  489. salt:
  490. minion:
  491. proxy_minion:
  492. master: localhost
  493. device:
  494. vsrx01.mydomain.local:
  495. enabled: true
  496. engine: napalm
  497. csr1000v.mydomain.local:
  498. enabled: true
  499. engine: napalm
  500. .. note:: This is pillar of the the real salt-minion
  501. Proxy pillar for IOS device
  502. .. code-block:: yaml
  503. proxy:
  504. proxytype: napalm
  505. driver: ios
  506. host: csr1000v.mydomain.local
  507. username: root
  508. passwd: r00tme
  509. .. note:: This is pillar of the node thats not able to run salt-minion itself
  510. Proxy pillar for JunOS device
  511. .. code-block:: yaml
  512. proxy:
  513. proxytype: napalm
  514. driver: junos
  515. host: vsrx01.mydomain.local
  516. username: root
  517. passwd: r00tme
  518. optional_args:
  519. config_format: set
  520. .. note:: This is pillar of the node thats not able to run salt-minion itself
  521. Salt SSH
  522. ~~~~~~~~
  523. Salt SSH with sudoer using key
  524. .. literalinclude:: tests/pillar/master_ssh_minion_key.sls
  525. :language: yaml
  526. Salt SSH with sudoer using password
  527. .. literalinclude:: tests/pillar/master_ssh_minion_password.sls
  528. :language: yaml
  529. Salt SSH with root using password
  530. .. literalinclude:: tests/pillar/master_ssh_minion_root.sls
  531. :language: yaml
  532. Salt control (cloud/kvm/docker)
  533. -------------------------------
  534. Salt cloud with local OpenStack provider
  535. .. literalinclude:: tests/pillar/control_cloud_openstack.sls
  536. :language: yaml
  537. Salt cloud with Digital Ocean provider
  538. .. literalinclude:: tests/pillar/control_cloud_digitalocean.sls
  539. :language: yaml
  540. Salt virt with KVM cluster
  541. .. literalinclude:: tests/pillar/control_virt.sls
  542. :language: yaml
  543. salt virt with custom destination for image file
  544. .. literalinclude:: tests/pillar/control_virt_custom.sls
  545. :language: yaml
  546. Usage
  547. =====
  548. Working with salt-cloud
  549. .. code-block:: bash
  550. salt-cloud -m /path/to/map --assume-yes
  551. Debug LIBCLOUD for salt-cloud connection
  552. .. code-block:: bash
  553. export LIBCLOUD_DEBUG=/dev/stderr; salt-cloud --list-sizes provider_name --log-level all
  554. References
  555. ==========
  556. * http://salt.readthedocs.org/en/latest/
  557. * https://github.com/DanielBryan/salt-state-graph
  558. * http://karlgrz.com/testing-salt-states-rapidly-with-docker/
  559. * https://mywushublog.com/2013/03/configuration-management-with-salt-stack/
  560. * http://russell.ballestrini.net/replace-the-nagios-scheduler-and-nrpe-with-salt-stack/
  561. * https://github.com/saltstack-formulas/salt-formula
  562. * http://docs.saltstack.com/en/latest/topics/tutorials/multimaster.html
  563. salt-cloud
  564. ----------
  565. * http://www.blog.sandro-mathys.ch/2013/07/setting-user-password-when-launching.html
  566. * http://cloudinit.readthedocs.org/en/latest/topics/examples.html
  567. * http://salt-cloud.readthedocs.org/en/latest/topics/install/index.html
  568. * http://docs.saltstack.com/topics/cloud/digitalocean.html
  569. * http://salt-cloud.readthedocs.org/en/latest/topics/rackspace.html
  570. * http://salt-cloud.readthedocs.org/en/latest/topics/map.html
  571. * http://docs.saltstack.com/en/latest/topics/tutorials/multimaster.html
  572. Documentation and Bugs
  573. ======================
  574. To learn how to install and update salt-formulas, consult the documentation
  575. available online at:
  576. http://salt-formulas.readthedocs.io/
  577. In the unfortunate event that bugs are discovered, they should be reported to
  578. the appropriate issue tracker. Use Github issue tracker for specific salt
  579. formula:
  580. https://github.com/salt-formulas/salt-formula-salt/issues
  581. For feature requests, bug reports or blueprints affecting entire ecosystem,
  582. use Launchpad salt-formulas project:
  583. https://launchpad.net/salt-formulas
  584. You can also join salt-formulas-users team and subscribe to mailing list:
  585. https://launchpad.net/~salt-formulas-users
  586. Developers wishing to work on the salt-formulas projects should always base
  587. their work on master branch and submit pull request against specific formula.
  588. https://github.com/salt-formulas/salt-formula-salt
  589. Any questions or feedback is always welcome so feel free to join our IRC
  590. channel:
  591. #salt-formulas @ irc.freenode.net