Merge "Fix container image builds"

This commit is contained in:
Zuul 2021-06-07 23:59:03 +00:00 committed by Gerrit Code Review
commit 05225342a8
2 changed files with 10 additions and 0 deletions

View File

@ -11,6 +11,10 @@ install_type={{ kolla_install_type }}
# Docker namespace to use for Kolla images.
namespace={{ kolla_docker_namespace }}
# Use host networking by default, in line with Kolla Ansible's default Docker
# engine configuration.
network_mode=host
# Docker image tag to apply.
tag={{ kolla_tag }}

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes an issue with container image builds by using ``host`` as the default
``network_mode`` for ``kolla-build``. See `story 2008942
<https://storyboard.openstack.org/#!/story/2008942>`__ for details.