Fix the (upgrade/remove_node) + collection test cases (#12687)

The 'old' playbook and the collection use '-' and '_' as separator,
which breaks the logic in scripts/testcases_run.sh.

Add aliases using the old schemes to make the test work and avoid
breaking anything.

Both '-' and '_' variants will be deleted once we switch to supporting
collection only.

Co-authored-by: Max Gautier <mg@max.gautier.name>
This commit is contained in:
k8s-infra-cherrypick-robot
2025-11-10 06:46:57 -08:00
committed by GitHub
parent 59b3c686a8
commit fe566df651
3 changed files with 7 additions and 1 deletions

3
remove_node.yml Normal file
View File

@@ -0,0 +1,3 @@
---
- name: Remove node
ansible.builtin.import_playbook: playbooks/remove_node.yml

View File

@@ -70,7 +70,7 @@ if [ "${UPGRADE_TEST}" != "false" ]; then
run_playbook cluster
;;
"graceful")
run_playbook upgrade-cluster
run_playbook upgrade_cluster
;;
*)
;;

3
upgrade_cluster.yml Normal file
View File

@@ -0,0 +1,3 @@
---
- name: Upgrade cluster
ansible.builtin.import_playbook: playbooks/upgrade_cluster.yml