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

210 lines
3.8 KiB
YAML
Raw Normal View History

---
.packet: &packet
extends: .testcases
variables:
2019-12-11 12:48:06 +00:00
CI_PLATFORM: "packet"
SSH_USER: "kubespray"
tags:
- packet
2019-05-02 19:20:20 +00:00
only: [/^pr-.*$/]
except: ['triggers']
packet_ubuntu18-calico-aio:
stage: deploy-part1
2019-12-11 12:48:06 +00:00
extends: .packet
when: on_success
# Future AIO job
packet_ubuntu20-calico-aio:
stage: deploy-part1
extends: .packet
when: manual
# ### PR JOBS PART2
2020-04-15 16:24:03 +00:00
packet_centos7-flannel-containerd-addons-ha:
2019-12-11 12:48:06 +00:00
extends: .packet
stage: deploy-part2
when: on_success
variables:
MITOGEN_ENABLE: "true"
packet_centos7-crio:
2020-04-22 13:09:52 +00:00
extends: .packet
stage: deploy-part2
when: on_success
variables:
MITOGEN_ENABLE: "true"
2020-04-22 13:09:52 +00:00
packet_ubuntu18-crio:
2019-12-11 12:48:06 +00:00
extends: .packet
stage: deploy-part2
when: manual
variables:
MITOGEN_ENABLE: "true"
2020-04-15 16:24:03 +00:00
packet_ubuntu16-canal-kubeadm-ha:
stage: deploy-part2
2019-12-11 12:48:06 +00:00
extends: .packet
when: on_success
packet_ubuntu16-canal-sep:
stage: deploy-special
2019-12-11 12:48:06 +00:00
extends: .packet
when: manual
packet_ubuntu16-flannel-ha:
stage: deploy-part2
extends: .packet
when: manual
packet_ubuntu16-kube-router-sep:
2019-12-11 12:48:06 +00:00
stage: deploy-part2
extends: .packet
when: manual
2019-12-05 13:42:32 +00:00
packet_debian10-containerd:
stage: deploy-part2
2019-12-11 12:48:06 +00:00
extends: .packet
2019-12-05 13:42:32 +00:00
when: on_success
variables:
MITOGEN_ENABLE: "true"
2019-12-05 13:42:32 +00:00
packet_centos7-calico-ha-once-localhost:
stage: deploy-part2
extends: .packet
2020-04-01 14:19:28 +00:00
when: on_success
variables:
# This will instruct Docker not to start over TLS.
DOCKER_TLS_CERTDIR: ""
2020-04-01 14:19:28 +00:00
services:
- docker:19.03.9-dind
packet_centos8-kube-ovn:
2019-07-31 03:10:20 +00:00
stage: deploy-part2
2019-12-11 12:48:06 +00:00
extends: .packet
[2.13] Backport CI fix (#7119) * [2.14] fix ci (#7021) * fix flake8 errors in Kubespray CI - tox-inventory-builder * fix flake8 errors in Kubespray CI - tox-inventory-builder * Invalidate CRI-O kubic repo's cache Signed-off-by: Victor Morales <v.morales@samsung.com> * add support to configure pkg install retries and use in CI job tf-ovh_ubuntu18-calico (due to it failing often) * Switch Calico and Cilium image repos to Quay.io Co-authored-by: Victor Morales <v.morales@samsung.com> Co-authored-by: Barry Melbourne <9964974+bmelbourne@users.noreply.github.com> Conflicts: roles/download/defaults/main.yml * up vagrant box to fedora/33-cloud-base in cri-o molecule tests (cherry picked from commit 06ec5393d770097c58a914ecf7a100251042bbd4) * add Google proxy-mirror-cache for docker hub to CI tests (cherry picked from commit d739a6bb2f935954510d6a83629584953db67fca) * containerd docker hub registry mirror support * containerd docker hub registry mirror support * add docs * fix typo * fix yamllint * fix indent in sample and ansible-playbook param in testcases_run * fix md * mv common vars to tests/common/_docker_hub_registry_mirror.yml * checkout vars to upgrade tests (cherry picked from commit 4a8a52bad9ecd89d3879b37601112200a62bfcd9) * Exclude .git/ from shellcheck If a branch name contains '.sh', current shellcheck checks the branch file under .git/ and outputs error because the format is not shell script one. This makes shellcheck exclude files under .git/ to avoid this issue. (cherry picked from commit e2467d87b65ad9050bea022a2d514172520e48f3) Co-authored-by: Hans Feldt <2808287+hafe@users.noreply.github.com> Co-authored-by: Sergey <s.bondarev@southbridge.ru> Co-authored-by: Kenichi Omichi <ken-oomichi@wx.jp.nec.com> * Switch some image from dockerhub to k8s.gcr (also increase pkg retries) (#6955) * Set packet_centos8-kube-ovn test to manual Signed-off-by: Rick Haan <rickhaan94@gmail.com> Co-authored-by: Etienne Champetier <champetier.etienne@gmail.com> Co-authored-by: Hans Feldt <2808287+hafe@users.noreply.github.com> Co-authored-by: Sergey <s.bondarev@southbridge.ru> Co-authored-by: Kenichi Omichi <ken-oomichi@wx.jp.nec.com> Co-authored-by: Florian Ruynat <16313165+floryut@users.noreply.github.com>
2021-01-21 14:49:04 +00:00
when: manual
2019-07-31 03:10:20 +00:00
packet_centos8-calico:
stage: deploy-part2
extends: .packet
when: on_success
packet_fedora30-weave:
stage: deploy-part2
extends: .packet
when: on_success
packet_opensuse-canal:
stage: deploy-part2
extends: .packet
when: on_success
# Contiv does not work in k8s v1.16
# packet_ubuntu16-contiv-sep:
# stage: deploy-part2
# extends: .packet
# when: on_success
# ### MANUAL JOBS
packet_ubuntu16-weave-sep:
stage: deploy-part2
2019-12-11 12:48:06 +00:00
extends: .packet
when: manual
packet_ubuntu18-cilium-sep:
stage: deploy-special
extends: .packet
when: manual
packet_ubuntu18-flannel-containerd-ha:
stage: deploy-part2
2019-12-11 12:48:06 +00:00
extends: .packet
when: manual
packet_ubuntu18-flannel-containerd-ha-once:
stage: deploy-part2
extends: .packet
when: manual
packet_debian9-macvlan:
stage: deploy-part2
2019-12-11 12:48:06 +00:00
extends: .packet
when: manual
packet_centos7-calico-ha:
stage: deploy-part2
2019-12-11 12:48:06 +00:00
extends: .packet
when: manual
packet_centos7-kube-router:
stage: deploy-part2
extends: .packet
when: manual
packet_centos7-multus-calico:
stage: deploy-part2
extends: .packet
when: manual
packet_oracle7-canal-ha:
stage: deploy-part2
2019-12-11 12:48:06 +00:00
extends: .packet
when: manual
2019-12-05 13:44:32 +00:00
packet_fedora31-flannel:
stage: deploy-part2
extends: .packet
when: on_success
variables:
MITOGEN_ENABLE: "true"
2019-12-05 13:44:32 +00:00
packet_amazon-linux-2-aio:
stage: deploy-part2
2019-12-11 12:48:06 +00:00
extends: .packet
2019-12-05 13:44:32 +00:00
when: manual
# ### PR JOBS PART3
# Long jobs (45min+)
packet_centos7-weave-upgrade-ha:
stage: deploy-part3
extends: .packet
when: manual
variables:
UPGRADE_TEST: basic
MITOGEN_ENABLE: "false"
packet_debian9-calico-upgrade:
stage: deploy-part3
extends: .packet
when: manual
variables:
UPGRADE_TEST: graceful
MITOGEN_ENABLE: "false"
packet_debian9-calico-upgrade-once:
stage: deploy-part3
extends: .packet
when: manual
variables:
UPGRADE_TEST: graceful
MITOGEN_ENABLE: "false"
packet_ubuntu18-calico-ha-recover:
stage: deploy-part3
extends: .packet
when: on_success
variables:
RECOVER_CONTROL_PLANE_TEST: "true"
RECOVER_CONTROL_PLANE_TEST_GROUPS: "etcd[2:],kube-master[1:]"
packet_ubuntu18-calico-ha-recover-noquorum:
stage: deploy-part3
extends: .packet
when: on_success
variables:
RECOVER_CONTROL_PLANE_TEST: "true"
RECOVER_CONTROL_PLANE_TEST_GROUPS: "etcd[1:],kube-master[1:]"