Saltstack Official Salt Formula
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

224 lines
7.5KB

  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. 'pygit2': {
  71. 'install_from_source': False,
  72. 'git': {
  73. 'require_state': False,
  74. 'install_from_package': 'git',
  75. },
  76. },
  77. },
  78. 'master': {
  79. 'gitfs_provider': 'pygit2'
  80. },
  81. },
  82. 'Suse': {
  83. 'pygit2': 'python-pygit2',
  84. 'pyinotify': 'python-pyinotify',
  85. 'gitfs': {
  86. 'pygit2': {
  87. 'install_from_source': False,
  88. 'git': {
  89. 'require_state': False,
  90. 'install_from_package': 'git',
  91. },
  92. },
  93. },
  94. 'master': {
  95. 'gitfs_provider': 'pygit2'
  96. },
  97. },
  98. 'Gentoo': {
  99. 'salt_master': 'app-admin/salt',
  100. 'salt_minion': 'app-admin/salt',
  101. 'salt_syndic': 'app-admin/salt',
  102. 'salt_api': 'app-admin/salt',
  103. 'salt_cloud': 'app-admin/salt',
  104. 'pyinotify': 'dev-python/pyinotify',
  105. },
  106. 'Arch': {
  107. 'salt_master': 'salt',
  108. 'salt_minion': 'salt',
  109. 'salt_syndic': 'salt',
  110. 'salt_cloud': 'salt',
  111. 'salt_api': 'salt',
  112. 'salt_ssh': 'salt',
  113. 'pygit2': 'python2-pygit2',
  114. 'libgit2': 'libgit2',
  115. 'pyinotify': 'python2-pyinotify',
  116. },
  117. 'Alpine': {
  118. 'salt_master': 'salt-master',
  119. 'salt_minion': 'salt-minion',
  120. 'salt_syndic': 'salt-syndic',
  121. 'salt_cloud': 'salt-cloud',
  122. 'salt_api': 'salt-api',
  123. 'salt_ssh': 'salt-ssh',
  124. 'pygit2': 'py2-pygit2',
  125. 'libgit2': 'libgit2',
  126. },
  127. 'FreeBSD': {
  128. 'salt_master': 'py27-salt',
  129. 'salt_minion': 'py27-salt',
  130. 'salt_syndic': 'py27-salt',
  131. 'salt_cloud': 'py27-salt',
  132. 'salt_api': 'py27-salt',
  133. 'salt_ssh': 'py27-salt',
  134. 'python_git': 'py27-GitPython',
  135. 'pygit2': 'py27-pygit2',
  136. 'config_path': '/usr/local/etc/salt',
  137. 'minion_service': 'salt_minion',
  138. 'master_service': 'salt_master',
  139. 'api_service': 'salt_api',
  140. 'syndic_service': 'salt_syndic',
  141. },
  142. 'OpenBSD': {
  143. 'salt_master': 'salt',
  144. 'salt_minion': 'salt',
  145. 'salt_syndic': 'salt',
  146. 'salt_cloud': 'salt',
  147. 'salt_api': 'salt',
  148. 'salt_ssh': 'salt',
  149. 'config_path': '/etc/salt',
  150. 'minion_service': 'salt_minion',
  151. 'master_service': 'salt_master',
  152. 'python_git': 'py-GitPython',
  153. },
  154. 'Windows': {
  155. 'salt_minion': 'salt-minion',
  156. 'config_path': 'C:\salt\conf',
  157. 'minion_service': 'salt-minion',
  158. },
  159. 'MacOS': {
  160. 'salt_minion': 'com.saltstack.salt',
  161. 'salt_minion_pkg_source': 'https://repo.saltstack.com/osx/salt-' + salt_release + '-py2-x86_64.pkg',
  162. 'salt_minion_pkg_hash': '',
  163. 'config_path': '/private/etc/salt',
  164. 'minion_service': 'com.saltstack.salt.minion',
  165. },
  166. }, merge=salt['grains.filter_by']({
  167. 'Ubuntu': {
  168. 'pkgrepo': 'deb http://repo.saltstack.com/apt/' +
  169. salt['grains.get']('os')|lower + '/' + osrelease + '/amd64/' + salt_release + ' ' + salt['grains.get']('oscodename') + ' main',
  170. 'key_url': 'https://repo.saltstack.com/apt/' + salt['grains.get']('os')|lower + '/' + osrelease + '/amd64/' + salt_release + '/SALTSTACK-GPG-KEY.pub',
  171. 'pygit2': 'python-pygit2',
  172. 'gitfs': {
  173. 'pygit2': {
  174. 'install_from_source': False,
  175. 'git': {
  176. 'require_state': False,
  177. 'install_from_package': None,
  178. },
  179. },
  180. },
  181. },
  182. 'Raspbian': {
  183. 'pkgrepo': 'deb http://repo.saltstack.com/apt/' +
  184. salt['grains.get']('os_family')|lower + '/' + salt['grains.get']('osmajorrelease', osrelease)|string + '/armhf/' + salt_release + ' ' + salt['grains.get']('oscodename') + ' main',
  185. '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',
  186. },
  187. 'SmartOS': {
  188. 'salt_master': 'salt',
  189. 'salt_minion': 'salt',
  190. 'salt_syndic': 'salt',
  191. 'salt_cloud': 'salt',
  192. 'salt_api': 'salt',
  193. 'salt_ssh': 'salt',
  194. 'minion_service': 'salt:minion',
  195. 'master_service': 'salt:master',
  196. 'api_service': 'salt:api',
  197. 'python_dulwich': 'py27-dulwich',
  198. 'gitfs': {
  199. 'dulwich': {
  200. 'install_from_source': False,
  201. }
  202. },
  203. 'config_path': '/opt/local/etc/salt',
  204. 'master': {
  205. 'gitfs_provider': 'dulwich'
  206. },
  207. }
  208. }, grain='os', merge=salt['pillar.get']('salt:lookup')))
  209. %}
  210. {## Merge the flavor_map to the default settings ##}
  211. {% do deep_merge(default_settings.salt,os_family_map) %}
  212. {## Merge in salt:lookup pillar ##}
  213. {% set salt_settings = salt['pillar.get'](
  214. 'salt',
  215. default=default_settings.salt,
  216. merge=True)
  217. %}