a5cdede387
In [1] new tests for subnet service types were added but by mistake 'service-types' was set as API extension required for those tests. In fact this API feature in the subnet is provided by the 'subnet-service-types' extension and this should be required for that tests. This patch also adds "subnet-service-types" extension to the Tempest conf in jobs for all branches up to stable/queens becuase this API extension was available in Neutron since queens for sure so it's safe to add it there. [1] https://review.opendev.org/c/openstack/neutron-tempest-plugin/+/787718 Related-Bug: #1933115 Change-Id: I2b9b472a07455f5e67fc4adcc3b264b4ad8a9dbf
240 lines
7.7 KiB
YAML
240 lines
7.7 KiB
YAML
- job:
|
|
name: neutron-tempest-plugin-api-victoria
|
|
parent: neutron-tempest-plugin-api
|
|
override-checkout: stable/victoria
|
|
vars:
|
|
devstack_services:
|
|
# Disable OVN services
|
|
br-ex-tcpdump: false
|
|
br-int-flows: false
|
|
ovn-controller: false
|
|
ovn-northd: false
|
|
ovs-vswitchd: false
|
|
ovsdb-server: false
|
|
q-ovn-metadata-agent: false
|
|
# Neutron services
|
|
q-agt: true
|
|
q-dhcp: true
|
|
q-l3: true
|
|
q-meta: true
|
|
q-metering: true
|
|
branch_override: stable/victoria
|
|
# TODO(slaweq): find a way to put this list of extensions in
|
|
# neutron repository and keep it different per branch,
|
|
# then it could be removed from here
|
|
network_api_extensions_common: &api_extensions
|
|
- address-scope
|
|
- agent
|
|
- allowed-address-pairs
|
|
- auto-allocated-topology
|
|
- availability_zone
|
|
- binding
|
|
- default-subnetpools
|
|
- dhcp_agent_scheduler
|
|
- dns-domain-ports
|
|
- dns-integration
|
|
- empty-string-filtering
|
|
- expose-port-forwarding-in-fip
|
|
- expose-l3-conntrack-helper
|
|
- ext-gw-mode
|
|
- external-net
|
|
- extra_dhcp_opt
|
|
- extraroute
|
|
- extraroute-atomic
|
|
- filter-validation
|
|
- fip-port-details
|
|
- flavors
|
|
- floating-ip-port-forwarding
|
|
- floatingip-pools
|
|
- ip-substring-filtering
|
|
- l3-conntrack-helper
|
|
- l3-flavors
|
|
- l3-ha
|
|
- l3_agent_scheduler
|
|
- logging
|
|
- metering
|
|
- multi-provider
|
|
- net-mtu
|
|
- net-mtu-writable
|
|
- network-ip-availability
|
|
- network_availability_zone
|
|
- network-segment-range
|
|
- pagination
|
|
- port-resource-request
|
|
- port-mac-address-regenerate
|
|
- port-security
|
|
- port-security-groups-filtering
|
|
- project-id
|
|
- provider
|
|
- qos
|
|
- qos-bw-minimum-ingress
|
|
- qos-fip
|
|
- quotas
|
|
- quota_details
|
|
- rbac-address-scope
|
|
- rbac-policies
|
|
- rbac-security-groups
|
|
- rbac-subnetpool
|
|
- router
|
|
- router-admin-state-down-before-update
|
|
- router_availability_zone
|
|
- security-group
|
|
- segment
|
|
- service-type
|
|
- sorting
|
|
- standard-attr-description
|
|
- standard-attr-revisions
|
|
- standard-attr-segment
|
|
- standard-attr-tag
|
|
- standard-attr-timestamp
|
|
- subnet_allocation
|
|
- subnet-dns-publish-fixed-ip
|
|
- subnet-service-types
|
|
- subnetpool-prefix-ops
|
|
- tag-ports-during-bulk-creation
|
|
- trunk
|
|
- trunk-details
|
|
- uplink-status-propagation
|
|
network_api_extensions_tempest:
|
|
- dvr
|
|
network_available_features: &available_features
|
|
- ipv6_metadata
|
|
devstack_localrc:
|
|
NEUTRON_DEPLOY_MOD_WSGI: false
|
|
NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_tempest) | join(',') }}"
|
|
Q_AGENT: openvswitch
|
|
Q_ML2_TENANT_NETWORK_TYPE: vxlan
|
|
Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
|
|
ML2_L3_PLUGIN: router
|
|
devstack_local_conf:
|
|
post-config:
|
|
# NOTE(slaweq): We can get rid of this hardcoded absolute path when
|
|
# devstack-tempest job will be switched to use lib/neutron instead of
|
|
# lib/neutron-legacy
|
|
/$NEUTRON_CORE_PLUGIN_CONF:
|
|
AGENT:
|
|
tunnel_types: gre,vxlan
|
|
ml2:
|
|
type_drivers: flat,geneve,vlan,gre,local,vxlan
|
|
test-config:
|
|
$TEMPEST_CONFIG:
|
|
neutron_plugin_options:
|
|
available_type_drivers: flat,geneve,vlan,gre,local,vxlan
|
|
|
|
- job:
|
|
name: neutron-tempest-plugin-scenario-openvswitch-victoria
|
|
parent: neutron-tempest-plugin-scenario-openvswitch
|
|
override-checkout: stable/victoria
|
|
vars:
|
|
branch_override: stable/victoria
|
|
network_api_extensions: *api_extensions
|
|
network_available_features: *available_features
|
|
devstack_localrc:
|
|
NETWORK_API_EXTENSIONS: "{{ network_api_extensions | join(',') }}"
|
|
devstack_local_conf:
|
|
test-config:
|
|
$TEMPEST_CONFIG:
|
|
network-feature-enabled:
|
|
available_features: "{{ network_available_features | join(',') }}"
|
|
neutron_plugin_options:
|
|
ipv6_metadata: False
|
|
|
|
- job:
|
|
name: neutron-tempest-plugin-scenario-openvswitch-iptables_hybrid-victoria
|
|
parent: neutron-tempest-plugin-scenario-openvswitch-iptables_hybrid
|
|
override-checkout: stable-victoria
|
|
vars:
|
|
branch_override: stable-victoria
|
|
network_api_extensions: *api_extensions
|
|
network_available_features: *available_features
|
|
devstack_localrc:
|
|
NETWORK_API_EXTENSIONS: "{{ network_api_extensions | join(',') }}"
|
|
devstack_local_conf:
|
|
test-config:
|
|
$TEMPEST_CONFIG:
|
|
network-feature-enabled:
|
|
available_features: "{{ network_available_features | join(',') }}"
|
|
neutron_plugin_options:
|
|
ipv6_metadata: False
|
|
|
|
- job:
|
|
name: neutron-tempest-plugin-scenario-linuxbridge-victoria
|
|
parent: neutron-tempest-plugin-scenario-linuxbridge
|
|
override-checkout: stable/victoria
|
|
vars:
|
|
branch_override: stable/victoria
|
|
network_api_extensions: *api_extensions
|
|
network_available_features: *available_features
|
|
devstack_localrc:
|
|
NETWORK_API_EXTENSIONS: "{{ network_api_extensions | join(',') }}"
|
|
devstack_local_conf:
|
|
test-config:
|
|
$TEMPEST_CONFIG:
|
|
network-feature-enabled:
|
|
available_features: "{{ network_available_features | join(',') }}"
|
|
neutron_plugin_options:
|
|
ipv6_metadata: False
|
|
|
|
- job:
|
|
name: neutron-tempest-plugin-scenario-ovn-victoria
|
|
parent: neutron-tempest-plugin-scenario-ovn
|
|
override-checkout: stable/victoria
|
|
vars:
|
|
branch_override: stable/victoria
|
|
network_api_extensions: *api_extensions
|
|
devstack_localrc:
|
|
NETWORK_API_EXTENSIONS: "{{ network_api_extensions | join(',') }}"
|
|
devstack_local_conf:
|
|
test-config:
|
|
$TEMPEST_CONFIG:
|
|
network-feature-enabled:
|
|
available_features: ""
|
|
|
|
- job:
|
|
name: neutron-tempest-plugin-dvr-multinode-scenario-victoria
|
|
parent: neutron-tempest-plugin-dvr-multinode-scenario
|
|
override-checkout: stable/victoria
|
|
vars:
|
|
network_api_extensions_common: *api_extensions
|
|
branch_override: stable/victoria
|
|
|
|
- job:
|
|
name: neutron-tempest-plugin-designate-scenario-victoria
|
|
parent: neutron-tempest-plugin-designate-scenario
|
|
override-checkout: stable/victoria
|
|
vars:
|
|
branch_override: stable/victoria
|
|
network_api_extensions_common: *api_extensions
|
|
|
|
- job:
|
|
name: neutron-tempest-plugin-sfc-victoria
|
|
parent: neutron-tempest-plugin-sfc
|
|
override-checkout: stable/victoria
|
|
vars:
|
|
branch_override: stable/victoria
|
|
network_api_extensions_common: *api_extensions
|
|
|
|
- job:
|
|
name: neutron-tempest-plugin-bgpvpn-bagpipe-victoria
|
|
parent: neutron-tempest-plugin-bgpvpn-bagpipe
|
|
override-checkout: stable/victoria
|
|
vars:
|
|
branch_override: stable/victoria
|
|
network_api_extensions: *api_extensions
|
|
|
|
- job:
|
|
name: neutron-tempest-plugin-dynamic-routing-victoria
|
|
parent: neutron-tempest-plugin-dynamic-routing
|
|
override-checkout: stable/victoria
|
|
vars:
|
|
branch_override: stable/victoria
|
|
network_api_extensions_common: *api_extensions
|
|
|
|
- job:
|
|
name: neutron-tempest-plugin-vpnaas-victoria
|
|
parent: neutron-tempest-plugin-vpnaas
|
|
override-checkout: stable/victoria
|
|
vars:
|
|
branch_override: stable/victoria
|
|
network_api_extensions_common: *api_extensions
|