Merge "Disable Paunch by default on the Undercloud"

This commit is contained in:
Zuul 2020-02-04 00:26:50 +00:00 committed by Gerrit Code Review
commit c87fef0346
2 changed files with 8 additions and 1 deletions

View File

@ -0,0 +1,7 @@
---
features:
- |
Paunch is now disabled by default when the Undercloud is deployed
and upgraded. Containers will be started by Ansible and not Paunch
anymore. One can enable Paunch again with undercloud_enable_paunch
set to True.

View File

@ -285,7 +285,7 @@ class UndercloudConfig(StandaloneConfig):
help=_('Enable or disable SELinux during the '
'deployment.')),
cfg.BoolOpt('undercloud_enable_paunch',
default=True,
default=False,
help=_('Enable or disable Paunch to manage '
'containers.')),
cfg.BoolOpt('undercloud_update_packages',