Saltstack Official Salt Formula
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

235 lines
7.7KB

  1. # -*- coding: utf-8 -*-
  2. # vim: ft=jinja
  3. {%- macro deep_merge(a, b) %}
  4. {#- This whole `'dict' in x.__class__.__name__` mess is a
  5. workaround for the missing mapping test in CentOS 6's
  6. ancient Jinja2, see #193 #}
  7. {%- for k,v in b.items() %}
  8. {%- if v is string or v is number %}
  9. {%- do a.update({ k: v }) %}
  10. {%- elif 'dict' not in v.__class__.__name__ %}
  11. {%- if a[k] is not defined %}
  12. {%- do a.update({ k: v }) %}
  13. {%- elif a[k] is iterable and 'dict' not in a[k].__class__.__name__ and
  14. a[k] is not string %}
  15. {%- do a.update({ k: v|list + a[k]|list}) %}
  16. {%- else %}
  17. {%- do a.update({ k: v }) %}
  18. {%- endif %}
  19. {%- elif 'dict' in v.__class__.__name__ %}
  20. {%- if a[k] is not defined %}
  21. {%- do a.update({ k: v }) %}
  22. {%- elif 'dict' in a[k].__class__.__name__ %}
  23. {%- do a.update({ k: v }) %}
  24. {%- else %}
  25. {%- do deep_merge(a[k], v) %}
  26. {%- endif %}
  27. {%- else %}
  28. {%- do a.update({ k: 'ERROR: case not contempled in merging!' }) %}
  29. {%- endif %}
  30. {%- endfor %}
  31. {%- endmacro %}
  32. {## Start with defaults from defaults.yaml ##}
  33. {% import_yaml "salt/defaults.yaml" as default_settings %}
  34. {##
  35. Setup variable using grains['os_family'] based logic, only add key:values here
  36. that differ from whats in defaults.yaml
  37. ##}
  38. {% set osrelease = salt['grains.get']('osrelease') %}
  39. {% set salt_release = salt['pillar.get']('salt:release', 'latest') %}
  40. {% set os_family_map = salt['grains.filter_by']({
  41. 'Debian': {
  42. 'pkgrepo': 'deb http://repo.saltstack.com/apt/' +
  43. salt['grains.get']('os')|lower + '/' + salt['grains.get']('osmajorrelease', osrelease)|string + '/amd64/' + salt_release + ' ' + salt['grains.get']('oscodename') + ' main',
  44. 'key_url': 'https://repo.saltstack.com/apt/' + salt['grains.get']('os')|lower + '/' + salt['grains.get']('osmajorrelease', osrelease)|string + '/amd64/' + salt_release + '/SALTSTACK-GPG-KEY.pub',
  45. 'libgit2': 'libgit2-22',
  46. 'pyinotify': 'python-pyinotify',
  47. 'gitfs': {
  48. 'pygit2': {
  49. 'install_from_source': True,
  50. 'version': '0.22.1',
  51. 'git': {
  52. 'require_state': False,
  53. 'install_from_package': 'git',
  54. },
  55. 'libgit2': {
  56. 'install_from_source': False,
  57. },
  58. },
  59. },
  60. },
  61. 'RedHat': {
  62. 'pkgrepo': 'https://repo.saltstack.com/yum/redhat/$releasever/$basearch/' + salt_release,
  63. 'key_url': 'https://repo.saltstack.com/yum/redhat/$releasever/$basearch/' + salt_release + '/SALTSTACK-GPG-KEY.pub',
  64. 'pygit2': salt['grains.filter_by']({
  65. 'Fedora': 'python2-pygit2',
  66. 'default': 'python-pygit2',
  67. }, grain='os'),
  68. 'python_git': 'GitPython',
  69. 'gitfs': {
  70. 'gitpython': {
  71. 'install_from_source': False,
  72. },
  73. 'pygit2': {
  74. 'install_from_source': False,
  75. 'git': {
  76. 'require_state': False,
  77. 'install_from_package': 'git',
  78. },
  79. },
  80. },
  81. 'master': {
  82. 'gitfs_provider': 'pygit2'
  83. },
  84. },
  85. 'Suse': {
  86. 'pygit2': 'python-pygit2',
  87. 'pyinotify': 'python-pyinotify',
  88. 'gitfs': {
  89. 'pygit2': {
  90. 'install_from_source': False,
  91. 'git': {
  92. 'require_state': False,
  93. 'install_from_package': 'git',
  94. },
  95. },
  96. },
  97. 'master': {
  98. 'gitfs_provider': 'pygit2'
  99. },
  100. },
  101. 'Gentoo': {
  102. 'salt_master': 'app-admin/salt',
  103. 'salt_minion': 'app-admin/salt',
  104. 'salt_syndic': 'app-admin/salt',
  105. 'salt_api': 'app-admin/salt',
  106. 'salt_cloud': 'app-admin/salt',
  107. 'pyinotify': 'dev-python/pyinotify',
  108. },
  109. 'Arch': {
  110. 'salt_master': 'salt',
  111. 'salt_minion': 'salt',
  112. 'salt_syndic': 'salt',
  113. 'salt_cloud': 'salt',
  114. 'salt_api': 'salt',
  115. 'salt_ssh': 'salt',
  116. 'python_git': 'python2-gitpython',
  117. 'pygit2': 'python2-pygit2',
  118. 'libgit2': 'libgit2',
  119. 'pyinotify': 'python2-pyinotify',
  120. },
  121. 'Alpine': {
  122. 'salt_master': 'salt-master',
  123. 'salt_minion': 'salt-minion',
  124. 'salt_syndic': 'salt-syndic',
  125. 'salt_cloud': 'salt-cloud',
  126. 'salt_api': 'salt-api',
  127. 'salt_ssh': 'salt-ssh',
  128. 'pygit2': 'py2-pygit2',
  129. 'libgit2': 'libgit2',
  130. },
  131. 'FreeBSD': {
  132. 'salt_master': 'py27-salt',
  133. 'salt_minion': 'py27-salt',
  134. 'salt_syndic': 'py27-salt',
  135. 'salt_cloud': 'py27-salt',
  136. 'salt_api': 'py27-salt',
  137. 'salt_ssh': 'py27-salt',
  138. 'python_git': 'py27-GitPython',
  139. 'pygit2': 'py27-pygit2',
  140. 'config_path': '/usr/local/etc/salt',
  141. 'minion_service': 'salt_minion',
  142. 'master_service': 'salt_master',
  143. 'api_service': 'salt_api',
  144. 'syndic_service': 'salt_syndic',
  145. },
  146. 'OpenBSD': {
  147. 'salt_master': 'salt',
  148. 'salt_minion': 'salt',
  149. 'salt_syndic': 'salt',
  150. 'salt_cloud': 'salt',
  151. 'salt_api': 'salt',
  152. 'salt_ssh': 'salt',
  153. 'config_path': '/etc/salt',
  154. 'minion_service': 'salt_minion',
  155. 'master_service': 'salt_master',
  156. 'python_git': 'py-GitPython',
  157. },
  158. 'Windows': {
  159. 'salt_minion': 'salt-minion',
  160. 'config_path': 'C:\salt\conf',
  161. 'minion_service': 'salt-minion',
  162. },
  163. 'MacOS': {
  164. 'salt_minion': 'com.saltstack.salt',
  165. 'salt_minion_pkg_source': '',
  166. 'salt_minion_pkg_hash': '',
  167. 'config_path': '/private/etc/salt',
  168. 'minion_service': 'com.saltstack.salt.minion',
  169. },
  170. }, merge=salt['grains.filter_by']({
  171. 'Ubuntu': {
  172. 'pkgrepo': 'deb http://repo.saltstack.com/apt/' +
  173. salt['grains.get']('os')|lower + '/' + osrelease + '/amd64/' + salt_release + ' ' + salt['grains.get']('oscodename') + ' main',
  174. 'key_url': 'https://repo.saltstack.com/apt/' + salt['grains.get']('os')|lower + '/' + osrelease + '/amd64/' + salt_release + '/SALTSTACK-GPG-KEY.pub',
  175. 'pygit2': 'python-pygit2',
  176. 'gitfs': {
  177. 'pygit2': {
  178. 'install_from_source': False,
  179. 'git': {
  180. 'require_state': False,
  181. 'install_from_package': None,
  182. },
  183. },
  184. },
  185. },
  186. 'Raspbian': {
  187. 'pkgrepo': 'deb http://repo.saltstack.com/apt/' +
  188. salt['grains.get']('os_family')|lower + '/' + salt['grains.get']('osmajorrelease', osrelease)|string + '/armhf/' + salt_release + ' ' + salt['grains.get']('oscodename') + ' main',
  189. 'key_url': 'https://repo.saltstack.com/apt/' + salt['grains.get']('os_family')|lower + '/' + salt['grains.get']('osmajorrelease', osrelease)|string + '/armhf/' + salt_release + '/SALTSTACK-GPG-KEY.pub',
  190. },
  191. 'SmartOS': {
  192. 'salt_master': 'salt',
  193. 'salt_minion': 'salt',
  194. 'salt_syndic': 'salt',
  195. 'salt_cloud': 'salt',
  196. 'salt_api': 'salt',
  197. 'salt_ssh': 'salt',
  198. 'minion_service': 'salt:minion',
  199. 'master_service': 'salt:master',
  200. 'api_service': 'salt:api',
  201. 'python_dulwich': 'py27-dulwich',
  202. 'gitfs': {
  203. 'dulwich': {
  204. 'install_from_source': False,
  205. }
  206. },
  207. 'config_path': '/opt/local/etc/salt',
  208. 'master': {
  209. 'gitfs_provider': 'dulwich'
  210. },
  211. }
  212. }, grain='os', merge=salt['pillar.get']('salt:lookup')))
  213. %}
  214. {## Merge the flavor_map to the default settings ##}
  215. {% do deep_merge(default_settings.salt,os_family_map) %}
  216. {## Merge in salt pillar ##}
  217. {% set salt_settings = salt['pillar.get'](
  218. 'salt',
  219. default=default_settings.salt,
  220. merge=True)
  221. %}
  222. {## Merge in salt_formulas pillar ##}
  223. {% set formulas_settings = salt['pillar.get'](
  224. 'salt_formulas',
  225. default=default_settings.salt_formulas,
  226. merge=True)
  227. %}