Skip to content

Commit 3f303bd

Browse files
authored
Remove unneeded test IDs from FVTs (#291)
https://issues.redhat.com/browse/OSPRH-15663
1 parent 300a272 commit 3f303bd

File tree

6 files changed

+0
-20
lines changed

6 files changed

+0
-20
lines changed

roles/telemetry_autoscaling/tasks/configure_heat.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,12 @@
2929
# into the template.yaml file, they weren't passed to the instance initially.
3030
- name: |
3131
TEST configure heat template automatically scaling instances
32-
RHOSO-12657
3332
ansible.builtin.template:
3433
src: instance.yaml.j2
3534
dest: ~/templates/autoscaling/vnf/instance.yaml
3635

3736
- name: |
3837
TEST Create resource reference in the heat template
39-
RHOSO-12658
4038
ansible.builtin.copy:
4139
dest: ~/templates/autoscaling/vnf/resources.yaml
4240
content: |
@@ -45,7 +43,6 @@
4543
4644
- name: |
4745
TEST Create template heat control instances
48-
RHOSO-12659
4946
ansible.builtin.template:
5047
dest: ~/templates/autoscaling/vnf/template.yaml
5148
src: template.yaml.j2

roles/telemetry_autoscaling/tasks/creating_stack.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525

2626
- name: |
2727
TEST create stack
28-
RHOSO-12648
2928
ansible.builtin.shell: |
3029
#source ~/overcloudrc;
3130
{{ openstack_cmd }} stack create \
@@ -42,7 +41,6 @@
4241

4342
- name: |
4443
TEST verify stack was successfully created
45-
RHOSO-12704
4644
ansible.builtin.shell: |
4745
# source ~/overcloudrc;
4846
{{ openstack_cmd }} stack show {{ stack_name }};
@@ -54,7 +52,6 @@
5452

5553
- name: |
5654
TEST Verify stack resources created
57-
RHOSO-12650
5855
ansible.builtin.shell: |
5956
# source ~/overcloudrc;
6057
export STACK_ID=$({{ openstack_cmd }} stack show {{ stack_name }} -c id -f value);
@@ -67,7 +64,6 @@
6764

6865
- name: |
6966
TEST Verify ceilometer cpu metrics exist
70-
RHOSO-12707
7167
ansible.builtin.shell: |
7268
# source ~/overcloudrc;
7369
{{ openstack_cmd }} metric list
@@ -82,7 +78,6 @@
8278

8379
- name: |
8480
TEST Verify that an instance was launched
85-
RHOSO-12651
8681
ansible.builtin.shell: |
8782
# source ~/overcloudrc;
8883
export STACK_ID=$({{ openstack_cmd }} stack show {{ stack_name }} -c id -f value);
@@ -92,7 +87,6 @@
9287

9388
- name: |
9489
TEST Verify that alarms were created
95-
RHOSO-12652
9690
ansible.builtin.shell: |
9791
# source ~/overcloudrc;
9892
{{ openstack_cmd }} alarm list
@@ -115,7 +109,6 @@
115109

116110
- name: |
117111
TEST Verify resource id match alarm id low
118-
RHOSO-12653
119112
ansible.builtin.shell: |
120113
# source ~/overcloudrc;
121114
{{ openstack_cmd }} alarm list |grep -i cpu_alarm_low | grep {{ stack_name }} | awk '{print $2}'
@@ -125,7 +118,6 @@
125118

126119
- name: |
127120
TEST Verify physical resource id match the alarm high
128-
RHOSO-12654
129121
ansible.builtin.shell: |
130122
# source ~/overcloudrc;
131123
{{ openstack_cmd }} alarm list |grep -i cpu_alarm_high | grep {{ stack_name }} | awk '{print $2}'

roles/telemetry_autoscaling/tasks/main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
# i.e. networks, flavor, image, security group
55
- name: |
66
TEST Verify services running
7-
RHOSO-12666
87
when: metrics_backend == "prometheus"
98
ansible.builtin.include_tasks:
109
file: test_services.yml

roles/telemetry_autoscaling/tasks/test_autoscaling.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222

2323
- name: |
2424
TEST Verify number instances before scaling
25-
RHOSO-12665
2625
ansible.builtin.shell: |
2726
# source ~/overcloudrc;
2827
{{ openstack_cmd }} server list --long | grep -i 'metering.server_group'
@@ -86,7 +85,6 @@
8685

8786
- name: |
8887
TEST Verify cpu high alarm has been triggered
89-
RHOSO-12660
9088
ansible.builtin.shell: |
9189
# source ~/overcloudrc;
9290
{{ openstack_cmd }} alarm list -c state -c name -f value| \
@@ -100,7 +98,6 @@
10098

10199
- name: |
102100
TEST Verify orchestration scaled up instances
103-
RHOSO-12661
104101
ansible.builtin.shell: |
105102
# source ~/overcloudrc;
106103
{{ openstack_cmd }} server list --long | grep -i metering.server_group
@@ -122,7 +119,6 @@
122119

123120
- name: |
124121
TEST Verify cpu low alarm has been triggered
125-
RHOSO-12664
126122
ansible.builtin.shell: |
127123
# source ~/overcloudrc;
128124
{{ openstack_cmd }} alarm list -c state -c name -f value| \
@@ -136,7 +132,6 @@
136132

137133
- name: |
138134
TEST Verify Orchestration scaled down instances
139-
RHOSO-12663
140135
ansible.builtin.shell: |
141136
# source ~/overcloudrc;
142137
export STACK_ID=$({{ openstack_cmd }} stack show {{ stack_name }} -c id -f value)

roles/telemetry_graphing/tasks/cypress_test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@
6262

6363
- name: |
6464
TEST Run Cypress tests
65-
RHOSO-13627
6665
ansible.builtin.shell: |
6766
Xvfb :99 -ac &
6867
export DISPLAY=:99
@@ -90,7 +89,6 @@
9089

9190
- name: |
9291
TEST Check if all tests passed
93-
RHOSO-13628
9492
ansible.builtin.assert:
9593
that:
9694
- cypress_run.rc == 0

roles/telemetry_graphing/tasks/verify_url.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
- name: |
1414
TEST Check OpenShift Console is accessible
15-
RHOSO-13626
1615
ansible.builtin.shell:
1716
cmd: |
1817
curl -o /dev/null -s -w "%{http_code}" -k {{ openshift_console_url }}

0 commit comments

Comments
 (0)