From 5c3e98b95323d62a80f43b5a2a3664950e589397 Mon Sep 17 00:00:00 2001 From: Jack Hodgkiss Date: Thu, 10 Oct 2024 20:27:39 +0100 Subject: [PATCH 1/2] doc: add note about `redis_connection_string` --- doc/source/operations/upgrading-openstack.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/source/operations/upgrading-openstack.rst b/doc/source/operations/upgrading-openstack.rst index c4e1bb6f0..1006a2361 100644 --- a/doc/source/operations/upgrading-openstack.rst +++ b/doc/source/operations/upgrading-openstack.rst @@ -113,6 +113,14 @@ The domain set should be something that is not use anywhere else such as The Neuron DNS integration can be disabled by setting ``neutron_dns_integration: false`` in ``kolla/globals.yml`` +Redis Default User +------------------ + +The ``redis_connection_string`` has changed the username used from ``admin`` +to ``default``. Whilst this does not have any negative impact on services +that utilise Redis it will feature prominently in any preview of the overcloud +configuration. + Known issues ============ From 4743ec79970813f99612424a605972a1df5340df Mon Sep 17 00:00:00 2001 From: Jack Hodgkiss Date: Thu, 10 Oct 2024 20:31:38 +0100 Subject: [PATCH 2/2] doc: add `--exclude` to `configuration save` --- doc/source/operations/upgrading-openstack.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/operations/upgrading-openstack.rst b/doc/source/operations/upgrading-openstack.rst index 1006a2361..0bcba45e5 100644 --- a/doc/source/operations/upgrading-openstack.rst +++ b/doc/source/operations/upgrading-openstack.rst @@ -494,7 +494,7 @@ Save the old configuration locally. .. code-block:: console - kayobe overcloud service configuration save --node-config-dir /etc/kolla --output-dir ~/kolla-diff/old --limit controllers[0],compute[0],storage[0] + kayobe overcloud service configuration save --node-config-dir /etc/kolla --output-dir ~/kolla-diff/old --limit controllers[0],compute[0],storage[0] --exclude ironic-agent.initramfs,ironic-agent.kernel Generate the new configuration to a tmpdir. @@ -506,7 +506,7 @@ Save the new configuration locally. .. code-block:: console - kayobe overcloud service configuration save --node-config-dir /tmp/kolla --output-dir ~/kolla-diff/new --limit controllers[0],compute[0],storage[0] + kayobe overcloud service configuration save --node-config-dir /tmp/kolla --output-dir ~/kolla-diff/new --limit controllers[0],compute[0],storage[0] --exclude ironic-agent.initramfs,ironic-agent.kernel The old and new configuration will be saved to ``~/kolla-diff/old`` and ``~/kolla-diff/new`` respectively on the Ansible control host.