File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed
Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -307,6 +307,16 @@ kolla_build_blocks:
307307 RUN sed -i 's/"pc-q35-rhel8.5.0"/"pc-q35-*"/' /usr/share/qemu/firmware/50-edk2-ovmf-cc.json
308308 {% endif %}
309309 {% endraw %}
310+ neutron_server_footer : |
311+ # This is a workaround for a bug in etcd3gw that was fixed in 1.0.1, but not in v0.2.3.
312+ # https://opendev.org/openstack/etcd3gw/commit/ed899b34e464862525f76fff2377a2cceeb65af7
313+ {% raw %}
314+ {% if base_distro == 'centos' %}
315+ RUN sed -i 's/decode_unicode=True/decode_unicode=False/' /var/lib/kolla/venv/lib/python3.6/site-packages/etcd3gw/watch.py
316+ {% elif base_distro == 'ubuntu' %}
317+ RUN sed -i 's/decode_unicode=True/decode_unicode=False/' /var/lib/kolla/venv/lib/python3.8/site-packages/etcd3gw/watch.py
318+ {% endif %}
319+ {% endraw %}
310320
311321kolla_build_customizations_common :
312322 bifrost_base_pip_packages_append :
Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ docker_yum_gpgkey: "https://download.docker.com/linux/centos/gpg"
77bifrost_tag : wallaby-20230207T194135
88blazar_tag : wallaby-20230303T172322
99caso_tag : wallaby-20230303T172322
10- neutron_tag : wallaby-20230307T113517
10+ neutron_tag : wallaby-20230317T170927
1111{% else %}
1212bifrost_tag : wallaby-20230215T160405
1313blazar_tag : wallaby-20230303T172458
1414caso_tag : wallaby-20230303T172458
1515keystone_tag : wallaby-20230308T104024
16- neutron_tag : wallaby-20230307T121824
16+ neutron_tag : wallaby-20230317T170930
1717{% endif %}
1818
1919glance_tls_proxy_tag : " {% raw %}{{ haproxy_tag | default(openstack_tag) }}{% endraw %}"
Original file line number Diff line number Diff line change 1+ ---
2+ fixes :
3+ - |
4+ The etcdgw library in the neutron-server container has been patched to
5+ workaround a python3 incompatability. This affects the batching feature in
6+ networking generic switch.
You can’t perform that action at this time.
0 commit comments