c12s-kubespray/.gitlab-ci/packet.yml

301 lines
5.8 KiB
YAML
Raw Normal View History

---
2020-09-18 15:08:46 +00:00
.packet:
extends: .testcases
variables:
ANSIBLE_TIMEOUT: "120"
2020-09-18 15:08:46 +00:00
CI_PLATFORM: packet
SSH_USER: kubespray
tags:
- packet
2020-09-18 15:08:46 +00:00
except: [triggers]
# CI template for PRs
.packet_pr:
2019-05-02 19:20:20 +00:00
only: [/^pr-.*$/]
2020-09-18 15:08:46 +00:00
extends: .packet
# CI template for periodic CI jobs
# Enabled when PERIODIC_CI_ENABLED var is set
.packet_periodic:
only:
variables:
- $PERIODIC_CI_ENABLED
2020-09-24 16:22:06 +00:00
allow_failure: true
2020-09-18 15:08:46 +00:00
extends: .packet
# The ubuntu20-calico-aio jobs are meant as early stages to prevent running the full CI if something is horribly broken
packet_ubuntu20-calico-aio:
stage: deploy-part1
2020-09-18 15:08:46 +00:00
extends: .packet_pr
when: on_success
variables:
RESET_CHECK: "true"
# Exericse ansible variants during the nightly jobs
packet_ubuntu20-calico-aio-ansible-2_9:
stage: deploy-part1
extends: .packet_periodic
when: on_success
variables:
ANSIBLE_MAJOR_VERSION: "2.9"
RESET_CHECK: "true"
packet_ubuntu20-calico-aio-ansible-2_10:
stage: deploy-part1
extends: .packet_periodic
when: on_success
variables:
ANSIBLE_MAJOR_VERSION: "2.10"
RESET_CHECK: "true"
packet_ubuntu20-calico-aio-ansible-2_11:
stage: deploy-part1
extends: .packet_periodic
when: on_success
variables:
ANSIBLE_MAJOR_VERSION: "2.11"
RESET_CHECK: "true"
# ### PR JOBS PART2
packet_ubuntu18-aio-docker:
stage: deploy-part2
extends: .packet_pr
when: on_success
packet_ubuntu20-aio-docker:
stage: deploy-part2
extends: .packet_pr
when: on_success
packet_ubuntu18-calico-aio:
stage: deploy-part2
extends: .packet_pr
when: on_success
packet_centos7-flannel-addons-ha:
2020-09-18 15:08:46 +00:00
extends: .packet_pr
stage: deploy-part2
when: on_success
packet_almalinux8-crio:
2020-09-18 15:08:46 +00:00
extends: .packet_pr
2020-04-22 13:09:52 +00:00
stage: deploy-part2
when: on_success
packet_ubuntu18-crio:
2020-09-18 15:08:46 +00:00
extends: .packet_pr
stage: deploy-part2
when: manual
packet_fedora35-crio:
extends: .packet_pr
stage: deploy-part2
when: manual
packet_ubuntu16-canal-ha:
stage: deploy-part2
2020-09-18 15:08:46 +00:00
extends: .packet_periodic
2020-05-03 19:36:26 +00:00
when: on_success
2020-04-15 16:24:03 +00:00
packet_ubuntu16-canal-sep:
stage: deploy-special
2020-09-18 15:08:46 +00:00
extends: .packet_pr
when: manual
packet_ubuntu16-flannel-ha:
stage: deploy-part2
2020-09-18 15:08:46 +00:00
extends: .packet_pr
when: manual
packet_debian10-cilium-svc-proxy:
stage: deploy-part2
2020-09-18 15:08:46 +00:00
extends: .packet_periodic
when: on_success
packet_debian10-calico:
stage: deploy-part2
extends: .packet_pr
when: on_success
packet_debian10-docker:
stage: deploy-part2
2020-09-18 15:08:46 +00:00
extends: .packet_pr
2020-05-03 19:36:26 +00:00
when: on_success
2021-08-31 21:02:22 +00:00
packet_debian11-calico:
stage: deploy-part2
extends: .packet_pr
when: on_success
packet_debian11-docker:
stage: deploy-part2
extends: .packet_pr
when: on_success
2020-05-03 19:36:26 +00:00
packet_centos7-calico-ha-once-localhost:
2019-12-11 12:48:06 +00:00
stage: deploy-part2
2020-09-18 15:08:46 +00:00
extends: .packet_pr
2020-06-04 15:59:14 +00:00
when: on_success
variables:
# This will instruct Docker not to start over TLS.
DOCKER_TLS_CERTDIR: ""
2020-05-03 19:36:26 +00:00
services:
2020-06-04 15:59:14 +00:00
- docker:19.03.9-dind
packet_almalinux8-kube-ovn:
2020-05-03 19:36:26 +00:00
stage: deploy-part2
2020-09-18 15:08:46 +00:00
extends: .packet_periodic
when: on_success
packet_almalinux8-calico:
2019-12-05 13:42:32 +00:00
stage: deploy-part2
2020-09-18 15:08:46 +00:00
extends: .packet_pr
2019-12-05 13:42:32 +00:00
when: on_success
packet_almalinux8-docker:
stage: deploy-part2
extends: .packet_pr
when: on_success
packet_fedora34-docker-weave:
stage: deploy-part2
2020-09-18 15:08:46 +00:00
extends: .packet_pr
2020-05-03 19:36:26 +00:00
when: on_success
2020-05-03 19:36:26 +00:00
packet_opensuse-canal:
stage: deploy-part2
2020-09-18 15:08:46 +00:00
extends: .packet_periodic
2020-04-01 14:19:28 +00:00
when: on_success
packet_opensuse-docker-cilium:
stage: deploy-part2
extends: .packet_pr
when: manual
2020-05-03 19:36:26 +00:00
# ### MANUAL JOBS
packet_ubuntu16-docker-weave-sep:
2019-07-31 03:10:20 +00:00
stage: deploy-part2
2020-09-18 15:08:46 +00:00
extends: .packet_pr
2020-05-03 19:36:26 +00:00
when: manual
2019-07-31 03:10:20 +00:00
2020-05-03 19:36:26 +00:00
packet_ubuntu18-cilium-sep:
stage: deploy-special
2020-09-18 15:08:46 +00:00
extends: .packet_pr
2020-05-03 19:36:26 +00:00
when: manual
packet_ubuntu18-flannel-ha:
stage: deploy-part2
2020-09-18 15:08:46 +00:00
extends: .packet_pr
2020-05-03 19:36:26 +00:00
when: manual
packet_ubuntu18-flannel-ha-once:
stage: deploy-part2
extends: .packet_pr
when: manual
# Calico HA eBPF
packet_almalinux8-calico-ha-ebpf:
stage: deploy-part2
2020-09-18 15:08:46 +00:00
extends: .packet_pr
2020-05-03 19:36:26 +00:00
when: manual
2020-05-03 19:36:26 +00:00
packet_debian9-macvlan:
stage: deploy-part2
2020-09-18 15:08:46 +00:00
extends: .packet_pr
when: manual
2020-05-03 19:36:26 +00:00
packet_centos7-calico-ha:
stage: deploy-part2
2020-09-18 15:08:46 +00:00
extends: .packet_pr
when: manual
2020-05-03 19:36:26 +00:00
packet_centos7-multus-calico:
stage: deploy-part2
2020-09-18 15:08:46 +00:00
extends: .packet_pr
2020-05-03 19:36:26 +00:00
when: manual
2020-04-15 16:24:03 +00:00
packet_oracle7-canal-ha:
stage: deploy-part2
2020-09-18 15:08:46 +00:00
extends: .packet_pr
when: manual
2021-11-30 23:53:17 +00:00
packet_fedora35-docker-calico:
stage: deploy-part2
2020-09-18 15:08:46 +00:00
extends: .packet_periodic
2020-05-03 19:36:26 +00:00
when: on_success
variables:
RESET_CHECK: "true"
2019-12-05 13:44:32 +00:00
packet_fedora34-calico-selinux:
stage: deploy-part2
extends: .packet_periodic
when: on_success
packet_fedora35-calico-swap-selinux:
stage: deploy-part2
extends: .packet_pr
when: manual
2019-12-05 13:44:32 +00:00
packet_amazon-linux-2-aio:
stage: deploy-part2
2020-09-18 15:08:46 +00:00
extends: .packet_pr
2019-12-05 13:44:32 +00:00
when: manual
packet_almalinux8-calico-nodelocaldns-secondary:
stage: deploy-part2
extends: .packet_pr
when: manual
packet_fedora34-kube-ovn:
stage: deploy-part2
2020-09-18 15:08:46 +00:00
extends: .packet_periodic
when: on_success
# ### PR JOBS PART3
# Long jobs (45min+)
packet_centos7-docker-weave-upgrade-ha:
2020-05-03 19:36:26 +00:00
stage: deploy-part3
2020-09-18 15:08:46 +00:00
extends: .packet_periodic
2020-05-27 12:22:40 +00:00
when: on_success
2020-05-03 19:36:26 +00:00
variables:
UPGRADE_TEST: basic
# Calico HA Wireguard
packet_ubuntu20-calico-ha-wireguard:
stage: deploy-part2
extends: .packet_pr
when: manual
packet_debian10-calico-upgrade:
stage: deploy-part3
2020-09-18 15:08:46 +00:00
extends: .packet_pr
2020-05-27 12:22:40 +00:00
when: on_success
variables:
UPGRADE_TEST: graceful
packet_debian10-calico-upgrade-once:
2020-05-03 19:36:26 +00:00
stage: deploy-part3
2020-09-18 15:08:46 +00:00
extends: .packet_periodic
2020-05-27 12:22:40 +00:00
when: on_success
2020-05-03 19:36:26 +00:00
variables:
UPGRADE_TEST: graceful
packet_ubuntu18-calico-ha-recover:
stage: deploy-part3
2020-09-18 15:08:46 +00:00
extends: .packet_periodic
when: on_success
variables:
RECOVER_CONTROL_PLANE_TEST: "true"
RECOVER_CONTROL_PLANE_TEST_GROUPS: "etcd[2:],kube_control_plane[1:]"
packet_ubuntu18-calico-ha-recover-noquorum:
stage: deploy-part3
2020-09-18 15:08:46 +00:00
extends: .packet_periodic
when: on_success
variables:
RECOVER_CONTROL_PLANE_TEST: "true"
RECOVER_CONTROL_PLANE_TEST_GROUPS: "etcd[1:],kube_control_plane[1:]"