Skip to content

CI: Add a test for scale.yml #12285

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitlab-ci/kubevirt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ pr:
- debian11-macvlan
- debian12-cilium
- fedora39-kube-router
# FIXME: this test if broken (perma-failing)
- openeuler24-calico
- rockylinux9-cilium
- ubuntu22-calico-all-in-one
Expand All @@ -53,6 +52,7 @@ pr:
- ubuntu24-kube-router-svc-proxy
- ubuntu24-ha-separate-etcd
- flatcar4081-calico
- fedora40-flannel-crio-collection-scale

# The ubuntu24-calico-all-in-one jobs are meant as early stages to prevent running the full CI if something is horribly broken
ubuntu24-calico-all-in-one:
Expand Down
2 changes: 1 addition & 1 deletion docs/developers/ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ amazon | :x: | :x: | :x: | :x: | :x: | :x: | :x: |
debian11 | :x: | :x: | :x: | :x: | :x: | :x: | :x: |
debian12 | :x: | :x: | :x: | :x: | :x: | :x: | :x: |
fedora39 | :white_check_mark: | :x: | :x: | :x: | :x: | :x: | :x: |
fedora40 | :x: | :x: | :x: | :x: | :x: | :x: | :x: |
fedora40 | :white_check_mark: | :x: | :x: | :x: | :x: | :x: | :x: |
flatcar4081 | :x: | :x: | :x: | :x: | :x: | :x: | :x: |
openeuler24 | :x: | :x: | :x: | :x: | :x: | :x: | :x: |
rockylinux9 | :x: | :x: | :x: | :x: | :x: | :x: | :x: |
Expand Down
9 changes: 9 additions & 0 deletions tests/files/fedora40-flannel-crio-collection-scale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
cloud_image: fedora-40
network_plugin: flannel
container_manager: crio

cluster_layout:
- node_groups: ['kube_control_plane', 'etcd']
- node_groups: ['kube_node']
- node_groups: ['kube_node', 'for_scale']
7 changes: 6 additions & 1 deletion tests/scripts/testcases_run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,12 @@ ansible-playbook \
## START KUBESPRAY

# Create cluster
run_playbook cluster
if [[ "${TESTCASE}" =~ "scale" ]]; then
run_playbook cluster --limit '!for_scale'
run_playbook scale --limit 'for_scale'
else
run_playbook cluster
fi

# Repeat deployment if testing upgrade
if [ "${UPGRADE_TEST}" != "false" ]; then
Expand Down