From 2339561eb724c2de144fb844d91cbd5e63da9f7d Mon Sep 17 00:00:00 2001 From: Pierre Riteau Date: Thu, 31 Oct 2024 14:09:03 +0100 Subject: [PATCH] Add removal of --key parameter to CLI rewrite note Also rewrite/reformat while here. Change-Id: Ife2acdb0d4360c58c7de68cf259a0ed4a86234c2 --- .../notes/python-cli-3e568065b8706e73.yaml | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/releasenotes/notes/python-cli-3e568065b8706e73.yaml b/releasenotes/notes/python-cli-3e568065b8706e73.yaml index b9c13f8ad6..de51a807d4 100644 --- a/releasenotes/notes/python-cli-3e568065b8706e73.yaml +++ b/releasenotes/notes/python-cli-3e568065b8706e73.yaml @@ -1,16 +1,16 @@ --- upgrade: - | - Rewrite kolla-ansible CLI to python + Rewrite kolla-ansible CLI in Python. Moving the CLI to Python allows for + easier maintenance and larger feature set. The CLI was built using the + cliff package that is used in the ``openstack`` and ``kayobe`` commands. - Moving the CLI to python allows for easier - maintenance and larger feature set. - The CLI was built using the cliff package - that is used in openstack-cli and kayobe-cli. + This patch introduces a few breaking changes stemming from the nature of + the cliff package: - This patch introduces a few breaking changes. - The changes stem the nature of the cliff package. - 1. the order of parameters must be - kolla-ansible - 2. mariadb_backup and mariadb_recovery now are - mariadb-backup and mariadb-recovery + * the order of parameters must be ``kolla-ansible `` + * ``mariadb_backup`` and ``mariadb_recovery`` now are ``mariadb-backup`` + and ``mariadb-recovery`` + + The ``--key`` parameter has also been dropped as it was duplicating + ``--vault-password-file``.