Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Fix upgrade tests
Browse files Browse the repository at this point in the history
* should run compatible with old settings, this means docker
* we need to run with a distro that has at least modern containerd,
  this means move from debian9 to debian10 to allow `containerd_version`
  to match between 2.17 and master
cristicalin committed Nov 21, 2021
1 parent 94cd16d commit ba811ed
Showing 4 changed files with 13 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .gitlab-ci/packet.yml
Original file line number Diff line number Diff line change
@@ -256,14 +256,14 @@ packet_ubuntu20-calico-ha-wireguard:
extends: .packet_pr
when: manual

packet_debian9-calico-upgrade:
packet_debian10-calico-upgrade:
stage: deploy-part3
extends: .packet_pr
when: on_success
variables:
UPGRADE_TEST: graceful

packet_debian9-calico-upgrade-once:
packet_debian10-calico-upgrade-once:
stage: deploy-part3
extends: .packet_periodic
when: on_success
2 changes: 1 addition & 1 deletion docs/ci.md
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ centos7 | :white_check_mark: | :x: | :x: | :white_check_mark: | :x: | :white_ch
centos8 | :white_check_mark: | :x: | :x: | :x: | :white_check_mark: | :x: | :x: | :x: | :x: |
debian10 | :white_check_mark: | :x: | :white_check_mark: | :x: | :x: | :x: | :x: | :x: | :x: |
debian11 | :white_check_mark: | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: |
debian9 | :white_check_mark: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :x: | :x: |
debian9 | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :x: | :x: |
fedora33 | :white_check_mark: | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: |
fedora34 | :white_check_mark: | :x: | :x: | :x: | :white_check_mark: | :x: | :x: | :x: | :x: |
opensuse | :x: | :white_check_mark: | :x: | :x: | :x: | :x: | :x: | :x: | :x: |
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
# Instance settings
cloud_image: debian-9
cloud_image: debian-10
mode: default

# Kubespray settings
@@ -9,5 +9,9 @@ deploy_netchecker: true
dns_min_replicas: 1
download_run_once: true

# Docker specific settings:
container_manager: docker
etcd_deployment_type: docker

# Make docker happy
docker_containerd_version: latest
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
---
# Instance settings
cloud_image: debian-9
cloud_image: debian-10
mode: default

# Kubespray settings
kube_network_plugin: calico
deploy_netchecker: true
dns_min_replicas: 1

# Docker specific settings:
container_manager: docker
etcd_deployment_type: docker

0 comments on commit ba811ed

Please sign in to comment.