5fb8104abf
We recently bumped Kubernetes version to 1.25.x, but we forgot to do this on cri-o as well. Change-Id: If57888d6f48fad904bf4c7cdd5bc6c70233b95be Depends-On: https://review.opendev.org/c/openstack/devstack-plugin-container/+/866130
261 lines
8.6 KiB
YAML
261 lines
8.6 KiB
YAML
# Copyright 2018 Red Hat, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
- job:
|
|
name: kuryr-kubernetes-base
|
|
parent: devstack-tempest
|
|
description: |
|
|
Base Kuryr Kubernetes tempest job. There are neither Neutron nor Octavia
|
|
services, its meant to be extended.
|
|
required-projects:
|
|
- openstack/devstack-gate
|
|
- openstack/devstack-plugin-container
|
|
- openstack/kuryr-kubernetes
|
|
- openstack/kuryr-tempest-plugin
|
|
- openstack/tempest
|
|
timeout: 10800
|
|
post-run:
|
|
- playbooks/copy-k8s-logs.yaml
|
|
- playbooks/copy-crio-logs.yaml
|
|
host-vars:
|
|
controller:
|
|
devstack_plugins:
|
|
kuryr-kubernetes: https://opendev.org/openstack/kuryr-kubernetes
|
|
devstack-plugin-container: https://opendev.org/openstack/devstack-plugin-container
|
|
kuryr-tempest-plugin: https://opendev.org/openstack/kuryr-tempest-plugin
|
|
vars:
|
|
# Default swap size got shrinked to 1 GB, it's way too small for us.
|
|
configure_swap_size: 8192
|
|
tempest_test_regex: '^(kuryr_tempest_plugin.tests.)'
|
|
# Since we switched the amphora image to focal, the tests started
|
|
# requiring more time.
|
|
tempest_test_timeout: 2400
|
|
tox_envlist: 'all'
|
|
tempest_plugins:
|
|
- kuryr-tempest-plugin
|
|
devstack_localrc:
|
|
CONTAINER_ENGINE: crio
|
|
CRIO_VERSION: "1.25"
|
|
ENABLE_TLS: true
|
|
ETCD_USE_RAMDISK: true
|
|
KURYR_ENABLED_HANDLERS: vif,endpoints,service,namespace,pod_label,policy,kuryrnetworkpolicy,kuryrnetwork,kuryrport,kuryrloadbalancer
|
|
KURYR_SG_DRIVER: policy
|
|
KURYR_SUBNET_DRIVER: namespace
|
|
devstack_services:
|
|
c-api: false
|
|
c-bak: false
|
|
c-sch: false
|
|
c-vol: false
|
|
cinder: false
|
|
coredns: false
|
|
# Need to disable dstat due to bug https://github.com/dstat-real/dstat/pull/162
|
|
dstat: false
|
|
etcd3: true
|
|
g-api: true
|
|
g-reg: true
|
|
key: true
|
|
kubernetes-master: true
|
|
kuryr-daemon: true
|
|
kuryr-kubernetes: true
|
|
mysql: true
|
|
n-api-meta: true
|
|
n-api: true
|
|
n-cond: true
|
|
n-cpu: true
|
|
n-sch: true
|
|
placement-api: true
|
|
placement-client: true
|
|
rabbit: true
|
|
s-account: false
|
|
s-container: false
|
|
s-object: false
|
|
s-proxy: false
|
|
tempest: true
|
|
zuul_copy_output:
|
|
'{{ devstack_log_dir }}/kubernetes': 'logs'
|
|
'{{ devstack_log_dir }}/crio': 'logs'
|
|
irrelevant-files:
|
|
- ^.*\.rst$
|
|
- ^doc/.*$
|
|
- ^releasenotes/.*$
|
|
- ^contrib/.*$
|
|
|
|
- job:
|
|
name: kuryr-kubernetes-base-ovn
|
|
parent: kuryr-kubernetes-base
|
|
description: Base kuryr-kubernetes-job with OVN
|
|
required-projects:
|
|
- openstack/neutron
|
|
timeout: 10800
|
|
post-run: playbooks/copy-k8s-logs.yaml
|
|
host-vars:
|
|
controller:
|
|
devstack_plugins:
|
|
neutron: https://opendev.org/openstack/neutron
|
|
vars:
|
|
network_api_extensions_common:
|
|
- tag-ports-during-bulk-creation
|
|
devstack_localrc:
|
|
KURYR_NEUTRON_DEFAULT_ROUTER: kuryr-router
|
|
ML2_L3_PLUGIN: ovn-router,trunk,qos
|
|
OVN_BRANCH: v21.06.0
|
|
OVS_BRANCH: "a4b04276ab5934d087669ff2d191a23931335c87"
|
|
OVN_BUILD_FROM_SOURCE: true
|
|
OVN_L3_CREATE_PUBLIC_NETWORK: true
|
|
VAR_RUN_PATH: /usr/local/var/run
|
|
devstack_services:
|
|
neutron-tag-ports-during-bulk-creation: true
|
|
neutron: true
|
|
q-qos: true
|
|
q-trunk: true
|
|
zuul_copy_output:
|
|
'{{ devstack_base_dir }}/data/ovn': 'logs'
|
|
'{{ devstack_log_dir }}/ovsdb-server-nb.log': 'logs'
|
|
'{{ devstack_log_dir }}/ovsdb-server-sb.log': 'logs'
|
|
'/home/zuul/np_sctp_kubetest.log': 'logs'
|
|
|
|
- job:
|
|
name: kuryr-kubernetes-base-ovs
|
|
parent: kuryr-kubernetes-base
|
|
description: Base kuryr-kubernetes-job with OVS
|
|
required-projects:
|
|
- openstack/devstack-gate
|
|
- openstack/devstack-plugin-container
|
|
- openstack/kuryr-kubernetes
|
|
- openstack/kuryr-tempest-plugin
|
|
- openstack/tempest
|
|
- openstack/neutron
|
|
timeout: 10800
|
|
post-run: playbooks/copy-k8s-logs.yaml
|
|
host-vars:
|
|
controller:
|
|
devstack_plugins:
|
|
neutron: https://opendev.org/openstack/neutron
|
|
vars:
|
|
network_api_extensions_common:
|
|
- tag-ports-during-bulk-creation
|
|
devstack_services:
|
|
neutron-tag-ports-during-bulk-creation: true
|
|
neutron: true
|
|
ovn-controller: false
|
|
ovn-northd: false
|
|
ovs-vswitchd: false
|
|
ovsdb-server: false
|
|
q-agt: true
|
|
q-dhcp: true
|
|
q-l3: true
|
|
q-meta: true
|
|
q-ovn-metadata-agent: false
|
|
q-svc: true
|
|
q-trunk: true
|
|
devstack_localrc:
|
|
KURYR_ENFORCE_SG_RULES: true
|
|
ML2_L3_PLUGIN: router
|
|
Q_AGENT: openvswitch
|
|
Q_ML2_PLUGIN_MECHANISM_DRIVERS: openvswitch
|
|
Q_ML2_TENANT_NETWORK_TYPE: vxlan
|
|
zuul_copy_output:
|
|
'{{ devstack_log_dir }}/ovsdb-server-nb.log': 'logs'
|
|
'{{ devstack_log_dir }}/ovsdb-server-sb.log': 'logs'
|
|
|
|
- job:
|
|
name: kuryr-kubernetes-octavia-base
|
|
parent: kuryr-kubernetes-base-ovn
|
|
description: |
|
|
Kuryr-Kubernetes tempest job using OVN and ovn-octavia driver for Kuryr
|
|
required-projects:
|
|
- openstack/octavia
|
|
- openstack/python-octaviaclient
|
|
- openstack/ovn-octavia-provider
|
|
- openstack/octavia-tempest-plugin
|
|
pre-run: playbooks/get_amphora_tarball.yaml
|
|
host-vars:
|
|
controller:
|
|
devstack_plugins:
|
|
octavia: https://opendev.org/openstack/octavia
|
|
ovn-octavia-provider: https://opendev.org/openstack/ovn-octavia-provider
|
|
octavia-tempest-plugin: https://opendev.org/openstack/octavia-tempest-plugin
|
|
vars:
|
|
tempest_plugins:
|
|
- kuryr-tempest-plugin
|
|
- octavia-tempest-plugin
|
|
devstack_localrc:
|
|
KURYR_EP_DRIVER_OCTAVIA_PROVIDER: ovn
|
|
KURYR_ENFORCE_SG_RULES: false
|
|
KURYR_K8S_OCTAVIA_MEMBER_MODE: L2
|
|
KURYR_LB_ALGORITHM: SOURCE_IP_PORT
|
|
OCTAVIA_AMP_IMAGE_FILE: /tmp/test-only-amphora-x64-haproxy-ubuntu-focal.qcow2
|
|
OCTAVIA_AMP_IMAGE_NAME: test-only-amphora-x64-haproxy-ubuntu-focal
|
|
OCTAVIA_AMP_IMAGE_SIZE: 3
|
|
devstack_local_conf:
|
|
post-config:
|
|
$OCTAVIA_CONF:
|
|
controller_worker:
|
|
amp_active_retries: 9999
|
|
api_settings:
|
|
enabled_provider_drivers: amphora:'Octavia Amphora driver',ovn:'Octavia OVN driver'
|
|
health_manager:
|
|
failover_threads: 2
|
|
health_update_threads: 2
|
|
stats_update_threads: 2
|
|
devstack_services:
|
|
octavia: true
|
|
o-api: true
|
|
o-cw: true
|
|
o-da: true
|
|
o-hk: true
|
|
o-hm: true
|
|
|
|
- job:
|
|
name: kuryr-kubernetes-octavia-base-ovs
|
|
parent: kuryr-kubernetes-base-ovs
|
|
nodeset: kuryr-nested-virt-ubuntu-focal
|
|
description: |
|
|
Kuryr-Kubernetes tempest job using OVS and amphora driver for Octavia
|
|
required-projects:
|
|
- openstack/octavia
|
|
- openstack/python-octaviaclient
|
|
- openstack/octavia-tempest-plugin
|
|
pre-run: playbooks/get_amphora_tarball.yaml
|
|
host-vars:
|
|
controller:
|
|
devstack_plugins:
|
|
octavia: https://opendev.org/openstack/octavia
|
|
octavia-tempest-plugin: https://opendev.org/openstack/octavia-tempest-plugin
|
|
vars:
|
|
tempest_plugins:
|
|
- kuryr-tempest-plugin
|
|
- octavia-tempest-plugin
|
|
devstack_localrc:
|
|
OCTAVIA_AMP_IMAGE_FILE: /tmp/test-only-amphora-x64-haproxy-ubuntu-focal.qcow2
|
|
OCTAVIA_AMP_IMAGE_NAME: test-only-amphora-x64-haproxy-ubuntu-focal
|
|
OCTAVIA_AMP_IMAGE_SIZE: 3
|
|
LIBVIRT_TYPE: kvm
|
|
LIBVIRT_CPU_MODE: host-passthrough
|
|
devstack_local_conf:
|
|
post-config:
|
|
$OCTAVIA_CONF:
|
|
controller_worker:
|
|
amp_active_retries: 9999
|
|
health_manager:
|
|
failover_threads: 2
|
|
health_update_threads: 2
|
|
stats_update_threads: 2
|
|
devstack_services:
|
|
octavia: true
|
|
o-api: true
|
|
o-cw: true
|
|
o-hk: true
|
|
o-hm: true
|