ac2135e450
* Fix recover-control-plane to work with etcd 3.3.x and add CI * Set default values for testcase * Add actual test jobs * Attempt to satisty gitlab ci linter * Fix ansible targets * Set etcd_member_name as stated in the docs... * Recovering from 0 masters is not supported yet * Add other master to broken_kube-master group as well * Increase number of retries to see if etcd needs more time to heal * Make number of retries for ETCD loops configurable, increase it for recovery CI and document it
142 lines
2.6 KiB
YAML
142 lines
2.6 KiB
YAML
---
|
|
.packet: &packet
|
|
extends: .testcases
|
|
variables:
|
|
CI_PLATFORM: "packet"
|
|
SSH_USER: "kubespray"
|
|
tags:
|
|
- packet
|
|
only: [/^pr-.*$/]
|
|
except: ['triggers']
|
|
|
|
packet_ubuntu18-calico-aio:
|
|
stage: deploy-part1
|
|
extends: .packet
|
|
when: on_success
|
|
|
|
# ### PR JOBS PART2
|
|
|
|
packet_centos7-flannel-addons:
|
|
extends: .packet
|
|
stage: deploy-part2
|
|
when: on_success
|
|
|
|
# ### MANUAL JOBS
|
|
|
|
packet_centos7-weave-kubeadm-sep:
|
|
stage: deploy-part2
|
|
extends: .packet
|
|
when: on_success
|
|
variables:
|
|
UPGRADE_TEST: basic
|
|
|
|
packet_ubuntu16-weave-sep:
|
|
stage: deploy-part2
|
|
extends: .packet
|
|
when: manual
|
|
|
|
# # More builds for PRs/merges (manual) and triggers (auto)
|
|
|
|
packet_ubuntu16-canal-ha:
|
|
stage: deploy-special
|
|
extends: .packet
|
|
when: manual
|
|
|
|
packet_ubuntu16-canal-kubeadm:
|
|
stage: deploy-part2
|
|
extends: .packet
|
|
when: on_success
|
|
|
|
packet_ubuntu16-flannel-ha:
|
|
stage: deploy-part2
|
|
extends: .packet
|
|
when: manual
|
|
|
|
# Contiv does not work in k8s v1.16
|
|
# packet_ubuntu16-contiv-sep:
|
|
# stage: deploy-part2
|
|
# extends: .packet
|
|
# when: on_success
|
|
|
|
packet_ubuntu18-cilium-sep:
|
|
stage: deploy-special
|
|
extends: .packet
|
|
when: manual
|
|
|
|
packet_ubuntu18-flannel-containerd:
|
|
stage: deploy-part2
|
|
extends: .packet
|
|
when: manual
|
|
|
|
packet_debian9-macvlan-sep:
|
|
stage: deploy-part2
|
|
extends: .packet
|
|
when: manual
|
|
|
|
packet_debian9-calico-upgrade:
|
|
stage: deploy-part2
|
|
extends: .packet
|
|
when: on_success
|
|
variables:
|
|
UPGRADE_TEST: graceful
|
|
|
|
packet_debian10-containerd:
|
|
stage: deploy-part2
|
|
extends: .packet
|
|
when: on_success
|
|
|
|
packet_centos7-calico-ha:
|
|
stage: deploy-part2
|
|
extends: .packet
|
|
when: manual
|
|
|
|
packet_centos7-kube-ovn:
|
|
stage: deploy-part2
|
|
extends: .packet
|
|
when: on_success
|
|
|
|
packet_centos7-kube-router:
|
|
stage: deploy-part2
|
|
extends: .packet
|
|
when: manual
|
|
|
|
packet_centos7-multus-calico:
|
|
stage: deploy-part2
|
|
extends: .packet
|
|
when: manual
|
|
|
|
packet_opensuse-canal:
|
|
stage: deploy-part2
|
|
extends: .packet
|
|
when: manual
|
|
|
|
packet_oracle7-canal:
|
|
stage: deploy-part2
|
|
extends: .packet
|
|
when: manual
|
|
|
|
packet_ubuntu16-kube-router-sep:
|
|
stage: deploy-part2
|
|
extends: .packet
|
|
when: manual
|
|
|
|
packet_amazon-linux-2-aio:
|
|
stage: deploy-part2
|
|
extends: .packet
|
|
when: manual
|
|
|
|
packet_ubuntu18-calico-ha-recover:
|
|
stage: deploy-part2
|
|
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-part2
|
|
extends: .packet
|
|
when: on_success
|
|
variables:
|
|
RECOVER_CONTROL_PLANE_TEST: "true"
|
|
RECOVER_CONTROL_PLANE_TEST_GROUPS: "etcd[1:],kube-master[1:]"
|