Skip to content

Commit aab5fca

Browse files
committed
Rename stackhpc-openstack-tests
stackhpc-openstack-tests has been renamed to stackhpc-cloud-tests to better reflect its function. References to the old name have been updated.
1 parent 4a55d94 commit aab5fca

File tree

3 files changed

+22
-22
lines changed

3 files changed

+22
-22
lines changed

.github/workflows/stackhpc-all-in-one.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -438,8 +438,8 @@ jobs:
438438
env:
439439
KAYOBE_AUTOMATION_SSH_PRIVATE_KEY: ${{ steps.ssh_key.outputs.ssh_key }}
440440

441-
- name: StackHPC OpenStack tests
442-
id: stackhpc-openstack-tests
441+
- name: StackHPC Cloud tests
442+
id: stackhpc-cloud-tests
443443
continue-on-error: true
444444
run: |
445445
mkdir -p sot-results
@@ -448,7 +448,7 @@ jobs:
448448
-v $(pwd)/sot-results:/stack/sot-results \
449449
-e KAYOBE_ENVIRONMENT -e KAYOBE_VAULT_PASSWORD -e KAYOBE_AUTOMATION_SSH_PRIVATE_KEY \
450450
$KAYOBE_IMAGE \
451-
/stack/kayobe-automation-env/src/kayobe-config/.automation/pipeline/playbook-run.sh '$KAYOBE_CONFIG_PATH/ansible/stackhpc-openstack-tests.yml'
451+
/stack/kayobe-automation-env/src/kayobe-config/.automation/pipeline/playbook-run.sh '$KAYOBE_CONFIG_PATH/ansible/stackhpc-cloud-tests.yml'
452452
env:
453453
KAYOBE_AUTOMATION_SSH_PRIVATE_KEY: ${{ steps.ssh_key.outputs.ssh_key }}
454454

@@ -474,18 +474,18 @@ jobs:
474474
diagnostics/
475475
tempest-artifacts/
476476
sot-results/
477-
if: ${{ !cancelled() && (steps.tempest.outcome == 'success' || steps.stackhpc-openstack-tests.outcome == 'success' || steps.diagnostics.outcome == 'success') }}
477+
if: ${{ !cancelled() && (steps.tempest.outcome == 'success' || steps.stackhpc-cloud-tests.outcome == 'success' || steps.diagnostics.outcome == 'success') }}
478478

479479
- name: Fail if any Tempest tests failed
480480
run: |
481481
test $(wc -l < tempest-artifacts/failed-tests) -lt 1
482482
483-
- name: Fail if any StackHPC OpenStack tests failed
483+
- name: Fail if any StackHPC Cloud tests failed
484484
run: |
485-
echo "Some StackHPC OpenStack tests failed."
485+
echo "Some StackHPC Cloud tests failed."
486486
echo "See HTML results artifact (sot-results) for details."
487487
exit 1
488-
if: steps.stackhpc-openstack-tests.outcome == 'failure'
488+
if: steps.stackhpc-cloud-tests.outcome == 'failure'
489489

490490
- name: Destroy
491491
run: terraform destroy -auto-approve

doc/source/contributor/testing-ci-automation.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ The workflow performs the following high-level steps:
122122
subnets, routers, etc.).
123123
#. If this is an upgrade job, upgrade the cloud under test to the target
124124
release.
125-
#. Run Tempest and `StackHPC OpenStack Tests
126-
<https://github.com/stackhpc/stackhpc-openstack-tests>`_ to test the cloud.
125+
#. Run Tempest and `StackHPC Cloud Tests
126+
<https://github.com/stackhpc/stackhpc-cloud-tests>`_ to test the cloud.
127127
#. Collect diagnostic information.
128128
#. Upload results as an artifact.
129129
#. Destroy the VM using Terraform.
@@ -345,12 +345,12 @@ The workflow performs the following high-level steps:
345345
previous OpenStack release is deployed.
346346
#. Register test resources in the cloud under test (images, flavors, networks,
347347
subnets, routers, etc.).
348-
#. Run Tempest and `StackHPC OpenStack Tests
349-
<https://github.com/stackhpc/stackhpc-openstack-tests>`__ to test the cloud.
348+
#. Run Tempest and `StackHPC Cloud Tests
349+
<https://github.com/stackhpc/stackhpc-cloud-tests>`__ to test the cloud.
350350
#. If this is an upgrade job, upgrade the cloud under test to the target
351351
release.
352-
#. Run Tempest and `StackHPC OpenStack Tests
353-
<https://github.com/stackhpc/stackhpc-openstack-tests>`__ to test the cloud.
352+
#. Run Tempest and `StackHPC Cloud Tests
353+
<https://github.com/stackhpc/stackhpc-cloud-tests>`__ to test the cloud.
354354
#. Collect diagnostic information.
355355
#. Upload results as an artifact.
356356
#. Destroy the VMs using Terraform.

etc/kayobe/ansible/stackhpc-openstack-tests.yml renamed to etc/kayobe/ansible/stackhpc-cloud-tests.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
2-
- name: Run StackHPC OpenStack tests
2+
- name: Run StackHPC Cloud tests
33
hosts: tempest_runner
44
tags:
5-
- stackhpc-openstack-tests
5+
- stackhpc-cloud-tests
66
vars:
77
sot_venv: "{{ virtualenv_path }}/sot-venv"
8-
sot_repo: https://github.com/stackhpc/stackhpc-openstack-tests
8+
sot_repo: https://github.com/stackhpc/stackhpc-cloud-tests
99
sot_version: v0.0.1
1010
sot_timeout: 30
1111
results_path_local: "{{ lookup('env', 'HOME') }}/sot-results"
1212
tasks:
13-
- name: Stackhpc OpenStack tests
13+
- name: Stackhpc Cloud tests
1414
block:
1515
- name: Create a temporary directory for tests repo
1616
ansible.builtin.tempfile:
@@ -24,7 +24,7 @@
2424
suffix: sot-results
2525
register: results_tmpdir
2626

27-
- name: Clone the StackHPC OpenStack tests repository
27+
- name: Clone the StackHPC Cloud tests repository
2828
ansible.builtin.git:
2929
repo: "{{ sot_repo }}"
3030
version: "{{ sot_version }}"
@@ -60,13 +60,13 @@
6060
file: "{{ kayobe_env_config_path }}/kolla/passwords.yml"
6161
name: kolla_passwords
6262

63-
- name: Run StackHPC OpenStack tests
63+
- name: Run StackHPC Cloud tests
6464
ansible.builtin.command:
6565
cmd: >
6666
{{ sot_venv }}/bin/py.test
67-
--html={{ results_tmpdir.path }}/stackhpc-openstack-tests.html
67+
--html={{ results_tmpdir.path }}/stackhpc-cloud-tests.html
6868
--self-contained-html
69-
--pyargs stackhpc_openstack_tests
69+
--pyargs stackhpc_cloud_tests
7070
--timeout {{ sot_timeout }}
7171
-vv
7272
environment:
@@ -88,7 +88,7 @@
8888
always:
8989
- name: Fetch results
9090
ansible.builtin.fetch:
91-
src: "{{ results_tmpdir.path }}/stackhpc-openstack-tests.html"
91+
src: "{{ results_tmpdir.path }}/stackhpc-cloud-tests.html"
9292
dest: "{{ results_path_local }}/"
9393
flat: true
9494

0 commit comments

Comments
 (0)