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.

328 lines
6.3 KiB

  1. ---
  2. .packet:
  3. extends: .testcases
  4. variables:
  5. ANSIBLE_TIMEOUT: "120"
  6. CI_PLATFORM: packet
  7. SSH_USER: kubespray
  8. tags:
  9. - packet
  10. except: [triggers]
  11. # CI template for PRs
  12. .packet_pr:
  13. only: [/^pr-.*$/]
  14. extends: .packet
  15. # CI template for periodic CI jobs
  16. # Enabled when PERIODIC_CI_ENABLED var is set
  17. .packet_periodic:
  18. only:
  19. variables:
  20. - $PERIODIC_CI_ENABLED
  21. allow_failure: true
  22. extends: .packet
  23. # The ubuntu20-calico-aio jobs are meant as early stages to prevent running the full CI if something is horribly broken
  24. packet_ubuntu20-calico-aio:
  25. stage: deploy-part1
  26. extends: .packet_pr
  27. when: on_success
  28. variables:
  29. RESET_CHECK: "true"
  30. packet_ubuntu20-calico-aio-ansible-2_11:
  31. stage: deploy-part1
  32. extends: .packet_periodic
  33. when: on_success
  34. variables:
  35. ANSIBLE_MAJOR_VERSION: "2.11"
  36. RESET_CHECK: "true"
  37. # ### PR JOBS PART2
  38. packet_ubuntu18-aio-docker:
  39. stage: deploy-part2
  40. extends: .packet_pr
  41. when: on_success
  42. packet_ubuntu20-aio-docker:
  43. stage: deploy-part2
  44. extends: .packet_pr
  45. when: on_success
  46. packet_ubuntu20-calico-aio-hardening:
  47. stage: deploy-part2
  48. extends: .packet_pr
  49. when: on_success
  50. packet_ubuntu18-calico-aio:
  51. stage: deploy-part2
  52. extends: .packet_pr
  53. when: on_success
  54. packet_ubuntu22-aio-docker:
  55. stage: deploy-part2
  56. extends: .packet_pr
  57. when: on_success
  58. packet_ubuntu22-calico-aio:
  59. stage: deploy-part2
  60. extends: .packet_pr
  61. when: on_success
  62. packet_centos7-flannel-addons-ha:
  63. extends: .packet_pr
  64. stage: deploy-part2
  65. when: on_success
  66. packet_almalinux8-crio:
  67. extends: .packet_pr
  68. stage: deploy-part2
  69. when: on_success
  70. packet_ubuntu18-crio:
  71. extends: .packet_pr
  72. stage: deploy-part2
  73. when: manual
  74. packet_fedora35-crio:
  75. extends: .packet_pr
  76. stage: deploy-part2
  77. when: manual
  78. packet_ubuntu16-canal-ha:
  79. stage: deploy-part2
  80. extends: .packet_periodic
  81. when: on_success
  82. packet_ubuntu16-canal-sep:
  83. stage: deploy-special
  84. extends: .packet_pr
  85. when: manual
  86. packet_ubuntu16-flannel-ha:
  87. stage: deploy-part2
  88. extends: .packet_pr
  89. when: manual
  90. packet_debian10-cilium-svc-proxy:
  91. stage: deploy-part2
  92. extends: .packet_periodic
  93. when: on_success
  94. packet_debian10-calico:
  95. stage: deploy-part2
  96. extends: .packet_pr
  97. when: on_success
  98. packet_debian10-docker:
  99. stage: deploy-part2
  100. extends: .packet_pr
  101. when: on_success
  102. packet_debian11-calico:
  103. stage: deploy-part2
  104. extends: .packet_pr
  105. when: on_success
  106. packet_debian11-docker:
  107. stage: deploy-part2
  108. extends: .packet_pr
  109. when: on_success
  110. packet_centos7-calico-ha-once-localhost:
  111. stage: deploy-part2
  112. extends: .packet_pr
  113. when: on_success
  114. variables:
  115. # This will instruct Docker not to start over TLS.
  116. DOCKER_TLS_CERTDIR: ""
  117. services:
  118. - docker:19.03.9-dind
  119. packet_almalinux8-kube-ovn:
  120. stage: deploy-part2
  121. extends: .packet_periodic
  122. when: on_success
  123. packet_almalinux8-calico:
  124. stage: deploy-part2
  125. extends: .packet_pr
  126. when: on_success
  127. packet_rockylinux8-calico:
  128. stage: deploy-part2
  129. extends: .packet_pr
  130. when: on_success
  131. packet_rockylinux9-calico:
  132. stage: deploy-part2
  133. extends: .packet_pr
  134. when: on_success
  135. packet_almalinux8-docker:
  136. stage: deploy-part2
  137. extends: .packet_pr
  138. when: on_success
  139. packet_fedora36-docker-weave:
  140. stage: deploy-part2
  141. extends: .packet_pr
  142. when: on_success
  143. packet_opensuse-canal:
  144. stage: deploy-part2
  145. extends: .packet_periodic
  146. when: on_success
  147. packet_opensuse-docker-cilium:
  148. stage: deploy-part2
  149. extends: .packet_pr
  150. when: manual
  151. # ### MANUAL JOBS
  152. packet_ubuntu16-docker-weave-sep:
  153. stage: deploy-part2
  154. extends: .packet_pr
  155. when: manual
  156. packet_ubuntu18-cilium-sep:
  157. stage: deploy-special
  158. extends: .packet_pr
  159. when: manual
  160. packet_ubuntu18-flannel-ha:
  161. stage: deploy-part2
  162. extends: .packet_pr
  163. when: manual
  164. packet_ubuntu18-flannel-ha-once:
  165. stage: deploy-part2
  166. extends: .packet_pr
  167. when: manual
  168. # Calico HA eBPF
  169. packet_almalinux8-calico-ha-ebpf:
  170. stage: deploy-part2
  171. extends: .packet_pr
  172. when: manual
  173. packet_debian9-macvlan:
  174. stage: deploy-part2
  175. extends: .packet_pr
  176. when: manual
  177. packet_centos7-calico-ha:
  178. stage: deploy-part2
  179. extends: .packet_pr
  180. when: manual
  181. packet_centos7-multus-calico:
  182. stage: deploy-part2
  183. extends: .packet_pr
  184. when: manual
  185. packet_centos7-canal-ha:
  186. stage: deploy-part2
  187. extends: .packet_pr
  188. when: manual
  189. packet_fedora36-docker-calico:
  190. stage: deploy-part2
  191. extends: .packet_periodic
  192. when: on_success
  193. variables:
  194. RESET_CHECK: "true"
  195. packet_fedora35-calico-selinux:
  196. stage: deploy-part2
  197. extends: .packet_periodic
  198. when: on_success
  199. packet_fedora35-calico-swap-selinux:
  200. stage: deploy-part2
  201. extends: .packet_pr
  202. when: manual
  203. packet_amazon-linux-2-aio:
  204. stage: deploy-part2
  205. extends: .packet_pr
  206. when: manual
  207. packet_almalinux8-calico-nodelocaldns-secondary:
  208. stage: deploy-part2
  209. extends: .packet_pr
  210. when: manual
  211. packet_fedora36-kube-ovn:
  212. stage: deploy-part2
  213. extends: .packet_periodic
  214. when: on_success
  215. # ### PR JOBS PART3
  216. # Long jobs (45min+)
  217. packet_centos7-weave-upgrade-ha:
  218. stage: deploy-part3
  219. extends: .packet_periodic
  220. when: on_success
  221. variables:
  222. UPGRADE_TEST: basic
  223. packet_ubuntu20-calico-etcd-kubeadm-upgrade-ha:
  224. stage: deploy-part3
  225. extends: .packet_periodic
  226. when: on_success
  227. variables:
  228. UPGRADE_TEST: basic
  229. # Calico HA Wireguard
  230. packet_ubuntu20-calico-ha-wireguard:
  231. stage: deploy-part2
  232. extends: .packet_pr
  233. when: manual
  234. packet_debian11-calico-upgrade:
  235. stage: deploy-part3
  236. extends: .packet_pr
  237. when: on_success
  238. variables:
  239. UPGRADE_TEST: graceful
  240. packet_almalinux8-calico-remove-node:
  241. stage: deploy-part3
  242. extends: .packet_pr
  243. when: on_success
  244. variables:
  245. REMOVE_NODE_CHECK: "true"
  246. REMOVE_NODE_NAME: "instance-3"
  247. packet_ubuntu20-calico-etcd-kubeadm:
  248. stage: deploy-part3
  249. extends: .packet_pr
  250. when: on_success
  251. packet_debian11-calico-upgrade-once:
  252. stage: deploy-part3
  253. extends: .packet_periodic
  254. when: on_success
  255. variables:
  256. UPGRADE_TEST: graceful
  257. packet_ubuntu18-calico-ha-recover:
  258. stage: deploy-part3
  259. extends: .packet_periodic
  260. when: on_success
  261. variables:
  262. RECOVER_CONTROL_PLANE_TEST: "true"
  263. RECOVER_CONTROL_PLANE_TEST_GROUPS: "etcd[2:],kube_control_plane[1:]"
  264. packet_ubuntu18-calico-ha-recover-noquorum:
  265. stage: deploy-part3
  266. extends: .packet_periodic
  267. when: on_success
  268. variables:
  269. RECOVER_CONTROL_PLANE_TEST: "true"
  270. RECOVER_CONTROL_PLANE_TEST_GROUPS: "etcd[1:],kube_control_plane[1:]"