File: .zuul.yaml

package info (click to toggle)
telemetry-tempest-plugin 2.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 444 kB
  • sloc: python: 1,842; makefile: 20; sh: 11
file content (271 lines) | stat: -rw-r--r-- 8,434 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
- job:
    name: telemetry-tempest-base
    parent: devstack-tempest
    description: |
      This job is for testing telemetry components. We test stable branches from wallaby onwards.
    irrelevant-files:
      - ^(test-|)requirements.txt$
      - ^setup.cfg$
      - ^doc/.*$
      - ^.*\.rst$
      - ^releasenotes/.*$
    timeout: 7800
    required-projects: &base_required_projects
      - openstack/aodh
      - openstack/ceilometer
      - openstack/telemetry-tempest-plugin
      - openstack/heat-tempest-plugin
      - openstack/heat
      - openstack/diskimage-builder
      - openstack/tempest
      - gnocchixyz/gnocchi
      - openstack-k8s-operators/sg-core
    vars: &base_vars
      configure_swap_size: 8192
      devstack_plugins:
        heat: https://opendev.org/openstack/heat
        ceilometer: https://opendev.org/openstack/ceilometer
        aodh: https://opendev.org/openstack/aodh
        sg-core: https://github.com/openstack-k8s-operators/sg-core
      # NOTE(jokke): The following will disable the gabbi based integration tests for now.
      # We will need to figure out how we refactor them to be stable in the CI.
      tempest_exclude_regex: (^telemetry_tempest_plugin\.scenario\.test_telemetry_integration\.)
      devstack_services:
        tempest: true
      devstack_localrc:
        TEMPEST_PLUGINS: '"/opt/stack/telemetry-tempest-plugin /opt/stack/heat-tempest-plugin"'
        GNOCCHI_ARCHIVE_POLICY_TEMPEST: "ceilometer-high-rate"
        CEILOMETER_BACKENDS: "gnocchi,sg-core"
        CEILOMETER_PIPELINE_INTERVAL: 15
        CEILOMETER_ALARM_THRESHOLD: 6000000000
        AODH_DEPLOY: uwsgi
      devstack_local_conf:
        test-config:
          $TEMPEST_CONFIG:
            service_available:
              sg_core: True
            telemetry_services:
              metric_backends: gnocchi,prometheus
            telemetry:
              disable_ssl_certificate_validation: True
              ceilometer_polling_interval: 15
      tempest_test_regex: telemetry_tempest_plugin
      tox_envlist: all

- job:
    name: telemetry-dsvm-integration
    parent: telemetry-tempest-base

# TODO(gmann): As per the 2025.1 testing runtime, we need to run at least
# one job on jammy. This job can be removed in the next cycle(2025.2)
- job:
    name: telemetry-dsvm-integration-ubuntu-jammy
    description: This is integrated compute job testing on Ubuntu jammy(22.04)
    parent: telemetry-dsvm-integration
    nodeset: openstack-single-node-jammy

- job:
    name: telemetry-dsvm-integration-2024-2
    parent: telemetry-tempest-base
    override-checkout: stable/2024.2
    required-projects:
      - name: gnocchixyz/gnocchi
        override-checkout: stable/4.6
    vars: &prefix_grouping_vars
      devstack_local_conf:
        test-config:
          $TEMPEST_CONFIG:
            telemetry:
              autoscaling_instance_grouping: prefix

- job:
    name: telemetry-dsvm-integration-2024-1
    parent: telemetry-tempest-base
    override-checkout: stable/2024.1
    required-projects:
      - name: gnocchixyz/gnocchi
        override-checkout: stable/4.6
    vars: *prefix_grouping_vars

- job:
    name: telemetry-dsvm-integration-2023-2
    parent: telemetry-tempest-base
    override-checkout: stable/2023.2
    required-projects:
      - name: gnocchixyz/gnocchi
        override-checkout: stable/4.6
    vars: &no_prometheus_vars
      devstack_localrc:
        GLOBAL_VENV: False
      devstack_local_conf:
        test-config:
          $TEMPEST_CONFIG:
            service_available:
              sg_core: False
            telemetry_services:
              metric_backends: gnocchi
            telemetry:
              autoscaling_instance_grouping: prefix

- job:
    name: telemetry-dsvm-integration
    parent: telemetry-tempest-base
    branches:
      - stable/2024.2
      - stable/2024.1
    required-projects:
      - name: gnocchixyz/gnocchi
        override-checkout: stable/4.6
    vars: *prefix_grouping_vars

- job:
    name: telemetry-dsvm-integration
    parent: telemetry-tempest-base
    branches:
      - stable/2023.2
    required-projects:
      - name: gnocchixyz/gnocchi
        override-checkout: stable/4.6
    vars: *no_prometheus_vars

- job:
    name: telemetry-dsvm-integration
    parent: telemetry-tempest-base
    branches:
      - stable/2023.1
    required-projects:
      - name: gnocchixyz/gnocchi
        override-checkout: stable/4.5
    vars: *no_prometheus_vars

- job:
    name: telemetry-dsvm-integration
    parent: telemetry-tempest-base
    branches:
      - stable/wallaby
    vars:
      devstack_localrc:
        USE_PYTHON3: False

- job:
    name: telemetry-dsvm-integration-ipv6-only-base
    parent: devstack-tempest-ipv6
    description: |
      Telemetry devstack tempest tests job for IPv6-only deployment
    irrelevant-files:
      - ^(test-|)requirements.txt$
      - ^setup.cfg$
      - ^doc/.*$
      - ^.*\.rst$
      - ^releasenotes/.*$
    required-projects: *base_required_projects
    vars: *base_vars

- job:
    name: telemetry-dsvm-integration-ipv6-only
    parent: telemetry-dsvm-integration-ipv6-only-base
    description: |
      Telemetry devstack tempest tests job for IPv6-only deployment
    branches:
      - stable/2024.2
      - stable/2024.1
    required-projects:
      - name: gnocchixyz/gnocchi
        override-checkout: stable/4.6
    vars: *prefix_grouping_vars

- job:
    name: telemetry-dsvm-integration-ipv6-only
    parent: telemetry-dsvm-integration-ipv6-only-base
    description: |
      Telemetry devstack tempest tests job for IPv6-only deployment
    branches:
      - stable/2023.2
    required-projects:
      - name: gnocchixyz/gnocchi
        override-checkout: stable/4.6
    vars: *no_prometheus_vars

- job:
    name: telemetry-dsvm-integration-ipv6-only
    parent: telemetry-dsvm-integration-ipv6-only-base
    description: |
      Telemetry devstack tempest tests job for IPv6-only deployment
    branches:
      - stable/2023.1
    required-projects:
      - name: gnocchixyz/gnocchi
        override-checkout: stable/4.5
    vars: *no_prometheus_vars

- job:
    name: telemetry-dsvm-integration-wallaby
    parent: telemetry-dsvm-integration
    nodeset: openstack-single-node-focal
    override-checkout: stable/wallaby
    voting: false

- job:
    name: telemetry-dsvm-integration-centos-8s
    nodeset: devstack-single-node-centos-8-stream
    parent: telemetry-dsvm-integration
    branches:
      - stable/wallaby
      - stable/xena
      - stable/yoga
    description: |
      Telemetry devstack tempest test job for Centos 8 stream system using python 36
      i.e. yoga and below
    vars:
      devstack_localrc:
        # for versions of devstack that don't explicitly support rhel8
        FORCE: 'yes'
        TEMPEST_BRANCH: '30.1.0'
        TEMPEST_VENV_UPPER_CONSTRAINTS: '/opt/stack/requirements/upper-constraints.txt'

- job:
    name: telemetry-dsvm-integration-centos-8s-fips
    parent: telemetry-dsvm-integration-centos-8s
    description: |
      Telemetry devstack tempest tests job for a FIPS enabled Centos 8 stream system using python36
      i.e. yoga and below
    pre-run: playbooks/enable-fips.yaml
    vars:
      nslookup_target: 'opendev.org'

- job:
    name: telemetry-dsvm-integration-centos-9s
    nodeset: devstack-single-node-centos-9-stream
    parent: telemetry-dsvm-integration
    description: |
      Telemetry devstack tempest tests job for a Centos 9 stream system

- job:
    name: telemetry-dsvm-integration-centos-9s-fips
    parent: telemetry-dsvm-integration-centos-9s
    description: |
      Telemetry devstack tempest tests job for a FIPS enabled Centos 9 stream system
    pre-run: playbooks/enable-fips.yaml
    vars:
      nslookup_target: "opendev.org"

- project:
    queue: telemetry
    templates:
      - check-requirements
      - tempest-plugin-jobs
    check:
      jobs:
        - telemetry-dsvm-integration
        - telemetry-dsvm-integration-ubuntu-jammy
        - telemetry-dsvm-integration-2023-2
        - telemetry-dsvm-integration-2024-1
        - telemetry-dsvm-integration-2024-2
        - telemetry-dsvm-integration-ipv6-only
        - telemetry-dsvm-integration-centos-9s
        - telemetry-dsvm-integration-centos-9s-fips
    gate:
      jobs:
        - telemetry-dsvm-integration
        - telemetry-dsvm-integration-ubuntu-jammy
        - telemetry-dsvm-integration-ipv6-only