Saltstack Official Apt Formula
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

179 linhas
4.7KB

  1. # -*- coding: utf-8 -*-
  2. # vim: ft=yaml
  3. ---
  4. # For help on this file's format, see https://kitchen.ci/
  5. driver:
  6. name: docker
  7. use_sudo: false
  8. privileged: true
  9. run_command: /usr/lib/systemd/systemd
  10. provisioner:
  11. name: salt_solo
  12. log_level: debug
  13. salt_install: none
  14. require_chef: false
  15. formula: apt
  16. salt_copy_filter:
  17. - .kitchen
  18. - .git
  19. platforms:
  20. ## SALT `tiamat`
  21. - name: debian-11-tiamat-py3
  22. driver:
  23. image: saltimages/salt-tiamat-py3:debian-11
  24. run_command: /lib/systemd/systemd
  25. - name: debian-10-tiamat-py3
  26. driver:
  27. image: saltimages/salt-tiamat-py3:debian-10
  28. run_command: /lib/systemd/systemd
  29. - name: debian-9-tiamat-py3
  30. driver:
  31. image: saltimages/salt-tiamat-py3:debian-9
  32. run_command: /lib/systemd/systemd
  33. - name: ubuntu-2204-tiamat-py3
  34. driver:
  35. image: saltimages/salt-tiamat-py3:ubuntu-22.04
  36. run_command: /lib/systemd/systemd
  37. - name: ubuntu-2004-tiamat-py3
  38. driver:
  39. image: saltimages/salt-tiamat-py3:ubuntu-20.04
  40. run_command: /lib/systemd/systemd
  41. - name: ubuntu-1804-tiamat-py3
  42. driver:
  43. image: saltimages/salt-tiamat-py3:ubuntu-18.04
  44. run_command: /lib/systemd/systemd
  45. ## SALT `master`
  46. - name: debian-11-master-py3
  47. driver:
  48. image: saltimages/salt-master-py3:debian-11
  49. run_command: /lib/systemd/systemd
  50. - name: debian-10-master-py3
  51. driver:
  52. image: saltimages/salt-master-py3:debian-10
  53. run_command: /lib/systemd/systemd
  54. - name: debian-9-master-py3
  55. driver:
  56. image: saltimages/salt-master-py3:debian-9
  57. run_command: /lib/systemd/systemd
  58. - name: ubuntu-2204-master-py3
  59. driver:
  60. image: saltimages/salt-master-py3:ubuntu-22.04
  61. run_command: /lib/systemd/systemd
  62. - name: ubuntu-2004-master-py3
  63. driver:
  64. image: saltimages/salt-master-py3:ubuntu-20.04
  65. run_command: /lib/systemd/systemd
  66. - name: ubuntu-1804-master-py3
  67. driver:
  68. image: saltimages/salt-master-py3:ubuntu-18.04
  69. run_command: /lib/systemd/systemd
  70. ## SALT `3004.1`
  71. - name: debian-11-3004-1-py3
  72. driver:
  73. image: saltimages/salt-3004.1-py3:debian-11
  74. run_command: /lib/systemd/systemd
  75. - name: debian-10-3004-1-py3
  76. driver:
  77. image: saltimages/salt-3004.1-py3:debian-10
  78. run_command: /lib/systemd/systemd
  79. - name: debian-9-3004-1-py3
  80. driver:
  81. image: saltimages/salt-3004.1-py3:debian-9
  82. run_command: /lib/systemd/systemd
  83. - name: ubuntu-2204-3004-1-py3
  84. driver:
  85. image: saltimages/salt-3004.1-py3:ubuntu-22.04
  86. run_command: /lib/systemd/systemd
  87. - name: ubuntu-2004-3004-1-py3
  88. driver:
  89. image: saltimages/salt-3004.1-py3:ubuntu-20.04
  90. run_command: /lib/systemd/systemd
  91. - name: ubuntu-1804-3004-1-py3
  92. driver:
  93. image: saltimages/salt-3004.1-py3:ubuntu-18.04
  94. run_command: /lib/systemd/systemd
  95. ## SALT `3003.4`
  96. - name: debian-10-3003-4-py3
  97. driver:
  98. image: saltimages/salt-3003.4-py3:debian-10
  99. run_command: /lib/systemd/systemd
  100. - name: debian-9-3003-4-py3
  101. driver:
  102. image: saltimages/salt-3003.4-py3:debian-9
  103. run_command: /lib/systemd/systemd
  104. - name: ubuntu-2004-3003-4-py3
  105. driver:
  106. image: saltimages/salt-3003.4-py3:ubuntu-20.04
  107. run_command: /lib/systemd/systemd
  108. - name: ubuntu-1804-3003-4-py3
  109. driver:
  110. image: saltimages/salt-3003.4-py3:ubuntu-18.04
  111. run_command: /lib/systemd/systemd
  112. verifier:
  113. # https://www.inspec.io/
  114. name: inspec
  115. sudo: true
  116. reporter:
  117. # cli, documentation, html, progress, json, json-min, json-rspec, junit
  118. - cli
  119. suites:
  120. - name: repositories
  121. provisioner:
  122. state_top:
  123. base:
  124. '*':
  125. - apt._mapdata
  126. - apt.repositories
  127. - apt.update
  128. pillars:
  129. top.sls:
  130. base:
  131. '*':
  132. - apt
  133. pillars_from_files:
  134. apt.sls: test/salt/pillar/repositories.sls
  135. verifier:
  136. inspec_tests:
  137. - path: test/integration/repositories
  138. - name: preferences
  139. provisioner:
  140. state_top:
  141. base:
  142. '*':
  143. - apt._mapdata
  144. - apt.preferences
  145. pillars:
  146. top.sls:
  147. base:
  148. '*':
  149. - apt
  150. pillars_from_files:
  151. apt.sls: test/salt/pillar/preferences.sls
  152. verifier:
  153. inspec_tests:
  154. - path: test/integration/preferences
  155. - name: unattended
  156. provisioner:
  157. state_top:
  158. base:
  159. '*':
  160. - apt._mapdata
  161. - apt.unattended
  162. pillars:
  163. top.sls:
  164. base:
  165. '*':
  166. - apt
  167. pillars_from_files:
  168. apt.sls: test/salt/pillar/unattended.sls
  169. verifier:
  170. inspec_tests:
  171. - path: test/integration/unattended