From 3349a6239330c158e81f239fb225c914abd8013e Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Thu, 16 Apr 2020 17:35:10 -0400 Subject: [PATCH] Officially deprecate Paunch Paunch has been replaced by tripleo_container_manage role in tripleo-ansible during Ussuri cycle. It is not tested anymore in this version and will be removed one day. It it strongly encouraged to switched to the Ansible role to manage containers; which should be the default if you deploy TripleO from master at this time. If you get the warning, it's possible that a parameter (EnablePaunch) is set to True; while the default was switched. Paunch will remain supported in Ussuri and backward, but not in Victoria and forward. Change-Id: I2be96c5929f0602296c8f2cebb65b755a2178195 --- paunch/builder/base.py | 3 +++ releasenotes/notes/deprecated-e6b67591cda93422.yaml | 12 ++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 releasenotes/notes/deprecated-e6b67591cda93422.yaml diff --git a/paunch/builder/base.py b/paunch/builder/base.py index dae67b4..35440f1 100644 --- a/paunch/builder/base.py +++ b/paunch/builder/base.py @@ -43,6 +43,9 @@ class BaseBuilder(object): 'tripleo-ansible, paunch CLI can not be used.') raise RuntimeError(msg) + self.log.warning('Paunch is deprecated and has been replaced by ' + 'tripleo_container_manage role in tripleo-ansible.') + def apply(self): stdout = [] diff --git a/releasenotes/notes/deprecated-e6b67591cda93422.yaml b/releasenotes/notes/deprecated-e6b67591cda93422.yaml new file mode 100644 index 0000000..917abc6 --- /dev/null +++ b/releasenotes/notes/deprecated-e6b67591cda93422.yaml @@ -0,0 +1,12 @@ +--- +prelude: > + Paunch has been replaced by tripleo_container_manage role in + tripleo-ansible during Ussuri cycle. + It is not tested anymore in this version and will be removed one day. + It it strongly encouraged to switched to the Ansible role to manage + containers; which should be the default if you deploy TripleO from + master at this time. + If you get the warning, it's possible that a parameter (EnablePaunch) is + set to True; while the default was switched. + Paunch will remain supported in Ussuri and backward, but not in Victoria + and forward.