File: base-nested-switch.yaml

package info (click to toggle)
neutron-tempest-plugin 3.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,372 kB
  • sloc: python: 26,896; sh: 324; makefile: 24
file content (77 lines) | stat: -rw-r--r-- 2,377 bytes parent folder | download | duplicates (2)
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
- nodeset:
    name: neutron-nested-virt-ubuntu-focal
    nodes:
      - name: controller
        label: nested-virt-ubuntu-focal
    groups:
      - name: tempest
        nodes:
          - controller

- nodeset:
    name: neutron-nested-virt-ubuntu-jammy
    nodes:
      - name: controller
        label: nested-virt-ubuntu-jammy
    groups:
      - name: tempest
        nodes:
          - controller

- nodeset:
    name: neutron-nested-virt-ubuntu-noble
    nodes:
      - name: controller
        label: nested-virt-ubuntu-noble
    groups:
      - name: tempest
        nodes:
          - controller

# Base nested switch job for 2025.1 and later
- job:
    name: neutron-tempest-plugin-base-nested-switch
    parent: neutron-tempest-plugin-base
    abstract: true
    branches:
      regex: ^(unmaintained|stable/(victoria|wallaby|xena|yoga|zed|2023|2024)).*$
      negate: true
    # Comment nodeset and vars to switch back to non nested nodes
    nodeset: neutron-nested-virt-ubuntu-noble
    vars: &nested_virt_vars
      devstack_localrc:
        LIBVIRT_TYPE: kvm
        # NOTE(ykarel): seeing issues with host-passthrough mode
        # https://bugs.launchpad.net/neutron/+bug/2036603
        # LIBVIRT_CPU_MODE: host-passthrough
        # TODO(ykarel): switch to 0.6.2+ once lp#2045549 is fixed
        CIRROS_VERSION: 0.5.3
        DEFAULT_IMAGE_NAME: cirros-0.5.3-x86_64-disk
        DEFAULT_IMAGE_FILE_NAME: cirros-0.5.3-x86_64-disk.img

# Base nested switch job for 2023.1 till 2024.2
- job:
    name: neutron-tempest-plugin-base-nested-switch
    parent: neutron-tempest-plugin-base
    abstract: true
    branches: ^(unmaintained|stable)/(2023|2024).*$
    # Comment nodeset and vars to switch back to non nested nodes
    nodeset: neutron-nested-virt-ubuntu-jammy
    vars: *nested_virt_vars

# Base nested switch job for yoga and zed
- job:
    name: neutron-tempest-plugin-base-nested-switch
    parent: neutron-tempest-plugin-base
    abstract: true
    branches: ^(unmaintained|stable)/(yoga|zed)$
    # Comment nodeset and vars to switch back to non nested nodes
    nodeset: neutron-nested-virt-ubuntu-focal
    vars: *nested_virt_vars

# Base nested switch job for EM releases
- job:
    name: neutron-tempest-plugin-base-nested-switch
    parent: neutron-tempest-plugin-base
    abstract: true
    branches: ^(stable/(victoria|wallaby|xena)).*$