diff --git a/zuul.d/2023_2_jobs.yaml b/zuul.d/2023_2_jobs.yaml deleted file mode 100644 index 2261b7c0f..000000000 --- a/zuul.d/2023_2_jobs.yaml +++ /dev/null @@ -1,306 +0,0 @@ -- job: - name: neutron-tempest-plugin-openvswitch-2023-2 - parent: neutron-tempest-plugin-openvswitch - nodeset: neutron-nested-virt-ubuntu-jammy - override-checkout: stable/2023.2 - vars: - network_api_extensions_openvswitch: &api_extensions_openvswitch - - dhcp_agent_scheduler - - local_ip - - qos-bw-minimum-ingress - tempest_test_regex: "\ - (^neutron_tempest_plugin.api)|\ - (^neutron_tempest_plugin.scenario)|\ - (^tempest.api.compute.servers.test_attach_interfaces)|\ - (^tempest.api.compute.servers.test_multiple_create)" - network_available_features: &available_features - - ipv6_metadata - network_api_extensions_common: &api_extensions - - address-group - - address-scope - - agent - - allowed-address-pairs - - auto-allocated-topology - - availability_zone - - binding - - default-subnetpools - - dns-domain-ports - - dns-integration - - dns-integration-domain-keywords - - 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 - - floating-ip-port-forwarding-detail - - floatingip-pools - - ip-substring-filtering - - l3-conntrack-helper - - l3-ext-ndp-proxy - - l3-flavors - - l3-ha - - l3-ndp-proxy - - l3_agent_scheduler - - metering - - multi-provider - - net-mtu - - net-mtu-writable - - network-ip-availability - - network_availability_zone - - network-segment-range - - pagination - - port-device-profile - - port-mac-address-regenerate - - port-resource-request - - port-resource-request-groups - - port-security - - port-security-groups-filtering - - project-id - - provider - - qos - - qos-fip - - quotas - - quota_details - - rbac-address-group - - rbac-address-scope - - rbac-policies - - rbac-security-groups - - rbac-subnetpool - - router - - router_availability_zone - - security-group - - security-groups-remote-address-group - - segment - - service-type - - sorting - - standard-attr-description - - standard-attr-revisions - - standard-attr-segment - - standard-attr-tag - - standard-attr-timestamp - - stateful-security-group - - subnet_allocation - - subnet-dns-publish-fixed-ip - - subnet-service-types - - subnetpool-prefix-ops - - tag-ports-during-bulk-creation - - trunk - - trunk-details - - uplink-status-propagation - devstack_localrc: - NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_openvswitch) | join(',') }}" - NEUTRON_DEPLOY_MOD_WSGI: false - devstack_local_conf: - test-config: - $TEMPEST_CONFIG: - network-feature-enabled: - available_features: "{{ network_available_features | join(',') }}" - -- job: - name: neutron-tempest-plugin-openvswitch-iptables_hybrid-2023-2 - parent: neutron-tempest-plugin-openvswitch-iptables_hybrid - nodeset: neutron-nested-virt-ubuntu-jammy - override-checkout: stable/2023.2 - vars: - network_api_extensions_common: *api_extensions - network_api_extensions_openvswitch: *api_extensions_openvswitch - network_available_features: *available_features - tempest_test_regex: "\ - (^neutron_tempest_plugin.api)|\ - (^neutron_tempest_plugin.scenario)|\ - (^tempest.api.compute.servers.test_attach_interfaces)|\ - (^tempest.api.compute.servers.test_multiple_create)" - # TODO(slaweq): remove trunks subport_connectivity test from blacklist - # when bug https://bugs.launchpad.net/neutron/+bug/1838760 will be fixed - # TODO(akatz): remove established tcp session verification test when the - # bug https://bugzilla.redhat.com/show_bug.cgi?id=1965036 will be fixed - tempest_exclude_regex: "\ - (^neutron_tempest_plugin.scenario.test_trunk.TrunkTest.test_subport_connectivity)|\ - (^neutron_tempest_plugin.scenario.test_security_groups.StatefulNetworkSecGroupTest.test_established_tcp_session_after_re_attachinging_sg)|\ - (^neutron_tempest_plugin.scenario.test_security_groups.StatelessNetworkSecGroupTest.test_established_tcp_session_after_re_attachinging_sg)" - devstack_localrc: - NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_openvswitch) | join(',') }}" - NEUTRON_DEPLOY_MOD_WSGI: false - devstack_local_conf: - test-config: - $TEMPEST_CONFIG: - network-feature-enabled: - available_features: "{{ network_available_features | join(',') }}" - neutron_plugin_options: - available_type_drivers: flat,vlan,local,vxlan - firewall_driver: iptables_hybrid - -- job: - name: neutron-tempest-plugin-openvswitch-enforce-scope-new-defaults-2023-2 - parent: neutron-tempest-plugin-openvswitch-2023-2 - nodeset: neutron-nested-virt-ubuntu-jammy - override-checkout: stable/2023.2 - vars: - devstack_localrc: - # Enabeling the scope and new defaults for services. - # NOTE: (gmann) We need to keep keystone scope check disable as - # services (except ironic) does not support the system scope and - # they need keystone to continue working with project scope. Until - # Keystone policies are changed to work for both system as well as - # for project scoped, we need to keep scope check disable for - # keystone. - NOVA_ENFORCE_SCOPE: true - GLANCE_ENFORCE_SCOPE: true - NEUTRON_ENFORCE_SCOPE: true - -- job: - name: neutron-tempest-plugin-linuxbridge-2023-2 - parent: neutron-tempest-plugin-linuxbridge - nodeset: neutron-nested-virt-ubuntu-jammy - override-checkout: stable/2023.2 - vars: - network_api_extensions_common: *api_extensions - network_api_extensions_linuxbridge: - - dhcp_agent_scheduler - - vlan-transparent - network_available_features: *available_features - tempest_test_regex: "\ - (^neutron_tempest_plugin.api)|\ - (^neutron_tempest_plugin.scenario)|\ - (^tempest.api.compute.servers.test_attach_interfaces)|\ - (^tempest.api.compute.servers.test_multiple_create)" - # TODO(eolivare): remove VLAN Transparency tests from blacklist - # when bug https://bugs.launchpad.net/neutron/+bug/1907548 will be fixed - # TODO(slaweq): remove - # test_established_tcp_session_after_re_attachinging_sg from the - # exclude regex when bug https://bugs.launchpad.net/neutron/+bug/1936911 - # will be fixed - # TODO(slaweq) remove test_floatingip_port_details from the exclude - # regex when bug https://bugs.launchpad.net/neutron/+bug/1799790 will be - # fixed - tempest_exclude_regex: "\ - (^neutron_tempest_plugin.scenario.test_vlan_transparency.VlanTransparencyTest)|\ - (^neutron_tempest_plugin.scenario.test_security_groups.StatefulNetworkSecGroupTest.test_established_tcp_session_after_re_attachinging_sg)|\ - (^neutron_tempest_plugin.scenario.test_security_groups.StatelessNetworkSecGroupTest.test_established_tcp_session_after_re_attachinging_sg)|\ - (^neutron_tempest_plugin.scenario.test_floatingip.FloatingIPPortDetailsTest.test_floatingip_port_details)" - devstack_localrc: - NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_linuxbridge) | join(',') }}" - NEUTRON_DEPLOY_MOD_WSGI: false - devstack_local_conf: - test-config: - $TEMPEST_CONFIG: - network-feature-enabled: - available_features: "{{ network_available_features | join(',') }}" - neutron_plugin_options: - available_type_drivers: flat,vlan,local,vxlan - q_agent: linuxbridge - firewall_driver: iptables - -- job: - name: neutron-tempest-plugin-ovn-2023-2 - parent: neutron-tempest-plugin-ovn - nodeset: neutron-nested-virt-ubuntu-jammy - override-checkout: stable/2023.2 - vars: - network_api_extensions_ovn: - - vlan-transparent - tempest_test_regex: "\ - (^neutron_tempest_plugin.api)|\ - (^neutron_tempest_plugin.scenario)|\ - (^tempest.api.compute.servers.test_attach_interfaces)|\ - (^tempest.api.compute.servers.test_multiple_create)" - devstack_localrc: - NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_ovn) | join(',') }}" - NEUTRON_DEPLOY_MOD_WSGI: false - devstack_services: - q-ovn-metadata-agent: true - q-ovn-agent: false - devstack_local_conf: - test-config: - $TEMPEST_CONFIG: - network-feature-enabled: - available_features: "" - neutron_plugin_options: - available_type_drivers: local,flat,vlan,geneve - is_igmp_snooping_enabled: True - firewall_driver: ovn - -- job: - name: neutron-tempest-plugin-dvr-multinode-scenario-2023-2 - parent: neutron-tempest-plugin-dvr-multinode-scenario - nodeset: openstack-two-node-jammy - override-checkout: stable/2023.2 - vars: - network_api_extensions_common: *api_extensions - network_api_extensions_dvr: - - dhcp_agent_scheduler - - dvr - devstack_localrc: - NETWORK_API_EXTENSIONS: "{{ (network_api_extensions_common + network_api_extensions_dvr) | join(',') }}" - NEUTRON_DEPLOY_MOD_WSGI: false - -- job: - name: neutron-tempest-plugin-designate-scenario-2023-2 - parent: neutron-tempest-plugin-designate-scenario - nodeset: neutron-nested-virt-ubuntu-jammy - override-checkout: stable/2023.2 - vars: - network_api_extensions_common: *api_extensions - devstack_localrc: - NEUTRON_DEPLOY_MOD_WSGI: false - -- job: - name: neutron-tempest-plugin-sfc-2023-2 - parent: neutron-tempest-plugin-sfc - nodeset: openstack-single-node-jammy - override-checkout: stable/2023.2 - vars: - devstack_localrc: - NEUTRON_DEPLOY_MOD_WSGI: false - -- job: - name: neutron-tempest-plugin-bgpvpn-bagpipe-2023-2 - parent: neutron-tempest-plugin-bgpvpn-bagpipe - nodeset: openstack-single-node-jammy - override-checkout: stable/2023.2 - vars: - devstack_localrc: - NEUTRON_DEPLOY_MOD_WSGI: false - -- job: - name: neutron-tempest-plugin-dynamic-routing-2023-2 - parent: neutron-tempest-plugin-dynamic-routing - nodeset: openstack-single-node-jammy - override-checkout: stable/2023.2 - vars: - devstack_localrc: - NEUTRON_DEPLOY_MOD_WSGI: false - -- job: - name: neutron-tempest-plugin-fwaas-2023-2 - parent: neutron-tempest-plugin-fwaas-openvswitch - nodeset: openstack-single-node-jammy - override-checkout: stable/2023.2 - vars: - devstack_localrc: - NEUTRON_DEPLOY_MOD_WSGI: false - -- job: - name: neutron-tempest-plugin-vpnaas-2023-2 - parent: neutron-tempest-plugin-vpnaas - nodeset: openstack-single-node-jammy - override-checkout: stable/2023.2 - vars: - devstack_localrc: - NEUTRON_DEPLOY_MOD_WSGI: false - -- job: - name: neutron-tempest-plugin-tap-as-a-service-2023-2 - parent: neutron-tempest-plugin-tap-as-a-service - nodeset: openstack-single-node-jammy - override-checkout: stable/2023.2 - vars: - devstack_localrc: - NEUTRON_DEPLOY_MOD_WSGI: false diff --git a/zuul.d/project.yaml b/zuul.d/project.yaml index 9c94e3b06..76a5e9b6f 100644 --- a/zuul.d/project.yaml +++ b/zuul.d/project.yaml @@ -139,24 +139,6 @@ jobs: - neutron-tempest-plugin-dvr-multinode-scenario-2023-1 -- project-template: - name: neutron-tempest-plugin-jobs-2023-2 - check: - jobs: - - neutron-tempest-plugin-openvswitch-2023-2 - - neutron-tempest-plugin-openvswitch-iptables_hybrid-2023-2 - - neutron-tempest-plugin-ovn-2023-2 - - neutron-tempest-plugin-designate-scenario-2023-2 - gate: - jobs: - - neutron-tempest-plugin-ovn-2023-2 - #TODO(slaweq): Move neutron-tempest-plugin-dvr-multinode-scenario out of - # the experimental queue when it will be more stable - experimental: - jobs: - - neutron-tempest-plugin-linuxbridge-2023-2 - - neutron-tempest-plugin-dvr-multinode-scenario-2023-2 - - project-template: name: neutron-tempest-plugin-jobs-2024-1 check: @@ -217,7 +199,6 @@ templates: - build-openstack-docs-pti - neutron-tempest-plugin-jobs - - neutron-tempest-plugin-jobs-2023-2 - neutron-tempest-plugin-jobs-2024-1 - neutron-tempest-plugin-jobs-2024-2 - neutron-tempest-plugin-jobs-2025-1 @@ -227,12 +208,10 @@ check: jobs: - neutron-tempest-plugin-sfc - - neutron-tempest-plugin-sfc-2023-2 - neutron-tempest-plugin-sfc-2024-1 - neutron-tempest-plugin-sfc-2024-2 - neutron-tempest-plugin-sfc-2025-1 - neutron-tempest-plugin-bgpvpn-bagpipe - - neutron-tempest-plugin-bgpvpn-bagpipe-2023-2 - neutron-tempest-plugin-bgpvpn-bagpipe-2024-1 - neutron-tempest-plugin-bgpvpn-bagpipe-2024-2 - neutron-tempest-plugin-bgpvpn-bagpipe-2025-1 @@ -244,24 +223,20 @@ # [1]https://review.opendev.org/c/openstack/neutron/+/941202 # [2]https://review.opendev.org/c/openstack/neutron-tempest-plugin/+/940906 voting: false - - neutron-tempest-plugin-dynamic-routing-2023-2 - neutron-tempest-plugin-dynamic-routing-2024-1 - neutron-tempest-plugin-dynamic-routing-2024-2 - neutron-tempest-plugin-dynamic-routing-2025-1 - neutron-tempest-plugin-fwaas-ovn - neutron-tempest-plugin-fwaas-openvswitch - - neutron-tempest-plugin-fwaas-2023-2 - neutron-tempest-plugin-fwaas-2024-1 - neutron-tempest-plugin-fwaas-2024-2 - neutron-tempest-plugin-fwaas-2025-1 - neutron-tempest-plugin-vpnaas - neutron-tempest-plugin-vpnaas-ovn - - neutron-tempest-plugin-vpnaas-2023-2 - neutron-tempest-plugin-vpnaas-2024-1 - neutron-tempest-plugin-vpnaas-2024-2 - neutron-tempest-plugin-vpnaas-2025-1 - neutron-tempest-plugin-tap-as-a-service - - neutron-tempest-plugin-tap-as-a-service-2023-2 - neutron-tempest-plugin-tap-as-a-service-2024-1 - neutron-tempest-plugin-tap-as-a-service-2024-2 - neutron-tempest-plugin-tap-as-a-service-2025-1