Slawek Kaplonski | 7f3fd67 | 2020-10-07 22:40:36 +0200 | [diff] [blame] | 1 | - job: |
| 2 | name: neutron-tempest-plugin-api-victoria |
| 3 | parent: neutron-tempest-plugin-api |
| 4 | override-checkout: stable/victoria |
| 5 | vars: |
| 6 | branch_override: stable/victoria |
| 7 | # TODO(slaweq): find a way to put this list of extensions in |
| 8 | # neutron repository and keep it different per branch, |
| 9 | # then it could be removed from here |
| 10 | network_api_extensions_common: &api_extensions |
| 11 | - address-scope |
| 12 | - agent |
| 13 | - allowed-address-pairs |
| 14 | - auto-allocated-topology |
| 15 | - availability_zone |
| 16 | - binding |
| 17 | - default-subnetpools |
| 18 | - dhcp_agent_scheduler |
| 19 | - dns-domain-ports |
| 20 | - dns-integration |
| 21 | - empty-string-filtering |
| 22 | - expose-port-forwarding-in-fip |
| 23 | - expose-l3-conntrack-helper |
| 24 | - ext-gw-mode |
| 25 | - external-net |
| 26 | - extra_dhcp_opt |
| 27 | - extraroute |
| 28 | - extraroute-atomic |
| 29 | - filter-validation |
| 30 | - fip-port-details |
| 31 | - flavors |
| 32 | - floating-ip-port-forwarding |
| 33 | - floatingip-pools |
| 34 | - ip-substring-filtering |
| 35 | - l3-conntrack-helper |
| 36 | - l3-flavors |
| 37 | - l3-ha |
| 38 | - l3_agent_scheduler |
| 39 | - logging |
| 40 | - metering |
| 41 | - multi-provider |
| 42 | - net-mtu |
| 43 | - net-mtu-writable |
| 44 | - network-ip-availability |
| 45 | - network_availability_zone |
| 46 | - network-segment-range |
| 47 | - pagination |
| 48 | - port-resource-request |
| 49 | - port-mac-address-regenerate |
| 50 | - port-security |
| 51 | - port-security-groups-filtering |
| 52 | - project-id |
| 53 | - provider |
| 54 | - qos |
| 55 | - qos-bw-minimum-ingress |
| 56 | - qos-fip |
| 57 | - quotas |
| 58 | - quota_details |
| 59 | - rbac-address-scope |
| 60 | - rbac-policies |
| 61 | - rbac-security-groups |
| 62 | - rbac-subnetpool |
| 63 | - router |
| 64 | - router-admin-state-down-before-update |
| 65 | - router_availability_zone |
| 66 | - security-group |
| 67 | - segment |
| 68 | - service-type |
| 69 | - sorting |
| 70 | - standard-attr-description |
| 71 | - standard-attr-revisions |
| 72 | - standard-attr-segment |
| 73 | - standard-attr-tag |
| 74 | - standard-attr-timestamp |
| 75 | - subnet_allocation |
| 76 | - subnet-dns-publish-fixed-ip |
| 77 | - subnetpool-prefix-ops |
| 78 | - tag-ports-during-bulk-creation |
| 79 | - trunk |
| 80 | - trunk-details |
| 81 | - uplink-status-propagation |
| 82 | network_api_extensions_tempest: |
| 83 | - dvr |
elajkat | 8bbd743 | 2020-11-04 16:41:34 +0100 | [diff] [blame] | 84 | network_available_features: &available_features |
| 85 | - ipv6_metadata |
Slawek Kaplonski | 7f3fd67 | 2020-10-07 22:40:36 +0200 | [diff] [blame] | 86 | devstack_localrc: |
Slawek Kaplonski | de20363 | 2020-11-05 14:34:10 +0100 | [diff] [blame^] | 87 | NEUTRON_DEPLOY_MOD_WSGI: false |
Slawek Kaplonski | 7f3fd67 | 2020-10-07 22:40:36 +0200 | [diff] [blame] | 88 | NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_tempest) | join(',') }}" |
| 89 | |
| 90 | - job: |
| 91 | name: neutron-tempest-plugin-scenario-openvswitch-victoria |
| 92 | parent: neutron-tempest-plugin-scenario-openvswitch |
| 93 | override-checkout: stable/victoria |
| 94 | vars: |
| 95 | branch_override: stable/victoria |
| 96 | network_api_extensions: *api_extensions |
elajkat | 8bbd743 | 2020-11-04 16:41:34 +0100 | [diff] [blame] | 97 | network_available_features: *available_features |
Slawek Kaplonski | 7f3fd67 | 2020-10-07 22:40:36 +0200 | [diff] [blame] | 98 | devstack_localrc: |
| 99 | NETWORK_API_EXTENSIONS: "{{ network_api_extensions | join(',') }}" |
| 100 | devstack_local_conf: |
| 101 | test-config: |
| 102 | $TEMPEST_CONFIG: |
elajkat | 8bbd743 | 2020-11-04 16:41:34 +0100 | [diff] [blame] | 103 | network-feature-enabled: |
| 104 | available_features: "{{ network_available_features | join(',') }}" |
Slawek Kaplonski | 7f3fd67 | 2020-10-07 22:40:36 +0200 | [diff] [blame] | 105 | neutron_plugin_options: |
| 106 | ipv6_metadata: False |
| 107 | |
| 108 | - job: |
| 109 | name: neutron-tempest-plugin-scenario-openvswitch-iptables_hybrid-victoria |
| 110 | parent: neutron-tempest-plugin-scenario-openvswitch-iptables_hybrid |
| 111 | override-checkout: stable-victoria |
| 112 | vars: |
| 113 | branch_override: stable-victoria |
| 114 | network_api_extensions: *api_extensions |
elajkat | 8bbd743 | 2020-11-04 16:41:34 +0100 | [diff] [blame] | 115 | network_available_features: *available_features |
Slawek Kaplonski | 7f3fd67 | 2020-10-07 22:40:36 +0200 | [diff] [blame] | 116 | devstack_localrc: |
| 117 | NETWORK_API_EXTENSIONS: "{{ network_api_extensions | join(',') }}" |
| 118 | devstack_local_conf: |
| 119 | test-config: |
| 120 | $TEMPEST_CONFIG: |
elajkat | 8bbd743 | 2020-11-04 16:41:34 +0100 | [diff] [blame] | 121 | network-feature-enabled: |
| 122 | available_features: "{{ network_available_features | join(',') }}" |
Slawek Kaplonski | 7f3fd67 | 2020-10-07 22:40:36 +0200 | [diff] [blame] | 123 | neutron_plugin_options: |
| 124 | ipv6_metadata: False |
| 125 | |
| 126 | - job: |
| 127 | name: neutron-tempest-plugin-scenario-linuxbridge-victoria |
| 128 | parent: neutron-tempest-plugin-scenario-linuxbridge |
| 129 | override-checkout: stable/victoria |
| 130 | vars: |
| 131 | branch_override: stable/victoria |
| 132 | network_api_extensions: *api_extensions |
elajkat | 8bbd743 | 2020-11-04 16:41:34 +0100 | [diff] [blame] | 133 | network_available_features: *available_features |
Slawek Kaplonski | 7f3fd67 | 2020-10-07 22:40:36 +0200 | [diff] [blame] | 134 | devstack_localrc: |
| 135 | NETWORK_API_EXTENSIONS: "{{ network_api_extensions | join(',') }}" |
| 136 | devstack_local_conf: |
| 137 | test-config: |
| 138 | $TEMPEST_CONFIG: |
elajkat | 8bbd743 | 2020-11-04 16:41:34 +0100 | [diff] [blame] | 139 | network-feature-enabled: |
| 140 | available_features: "{{ network_available_features | join(',') }}" |
Slawek Kaplonski | 7f3fd67 | 2020-10-07 22:40:36 +0200 | [diff] [blame] | 141 | neutron_plugin_options: |
| 142 | ipv6_metadata: False |
| 143 | |
| 144 | - job: |
| 145 | name: neutron-tempest-plugin-scenario-ovn-victoria |
| 146 | parent: neutron-tempest-plugin-scenario-ovn |
| 147 | override-checkout: stable/victoria |
| 148 | vars: |
| 149 | branch_override: stable/victoria |
| 150 | network_api_extensions: *api_extensions |
| 151 | devstack_localrc: |
| 152 | NETWORK_API_EXTENSIONS: "{{ network_api_extensions | join(',') }}" |
elajkat | 8bbd743 | 2020-11-04 16:41:34 +0100 | [diff] [blame] | 153 | devstack_local_conf: |
| 154 | test-config: |
| 155 | $TEMPEST_CONFIG: |
| 156 | network-feature-enabled: |
| 157 | available_features: "" |
Slawek Kaplonski | 7f3fd67 | 2020-10-07 22:40:36 +0200 | [diff] [blame] | 158 | |
| 159 | - job: |
| 160 | name: neutron-tempest-plugin-dvr-multinode-scenario-victoria |
| 161 | parent: neutron-tempest-plugin-dvr-multinode-scenario |
| 162 | override-checkout: stable/victoria |
| 163 | vars: |
| 164 | network_api_extensions_common: *api_extensions |
| 165 | branch_override: stable/victoria |
| 166 | |
| 167 | - job: |
| 168 | name: neutron-tempest-plugin-designate-scenario-victoria |
| 169 | parent: neutron-tempest-plugin-designate-scenario |
| 170 | override-checkout: stable/victoria |
| 171 | vars: |
| 172 | branch_override: stable/victoria |
| 173 | network_api_extensions_common: *api_extensions |
| 174 | |
| 175 | - job: |
| 176 | name: neutron-tempest-plugin-sfc-victoria |
| 177 | parent: neutron-tempest-plugin-sfc |
| 178 | override-checkout: stable/victoria |
| 179 | vars: |
| 180 | branch_override: stable/victoria |
| 181 | network_api_extensions_common: *api_extensions |
| 182 | |
| 183 | - job: |
| 184 | name: neutron-tempest-plugin-bgpvpn-bagpipe-victoria |
| 185 | parent: neutron-tempest-plugin-bgpvpn-bagpipe |
| 186 | override-checkout: stable/victoria |
| 187 | vars: |
| 188 | branch_override: stable/victoria |
| 189 | network_api_extensions: *api_extensions |
| 190 | |
| 191 | - job: |
| 192 | name: neutron-tempest-plugin-dynamic-routing-victoria |
| 193 | parent: neutron-tempest-plugin-dynamic-routing |
| 194 | override-checkout: stable/victoria |
| 195 | vars: |
| 196 | branch_override: stable/victoria |
| 197 | network_api_extensions_common: *api_extensions |
| 198 | |
| 199 | - job: |
| 200 | name: neutron-tempest-plugin-vpnaas-victoria |
| 201 | parent: neutron-tempest-plugin-vpnaas |
| 202 | override-checkout: stable/victoria |
| 203 | vars: |
| 204 | branch_override: stable/victoria |
| 205 | network_api_extensions_common: *api_extensions |