openstack-ansible-plugins/releasenotes/notes/service_password_update-3bdd2bb5ed3a99b5.yaml
Dmitriy Rabotyagov 88a8bfcd62 Skip updating service password by default
At the moment we always do attempt to reset passwords for the
keystone services, which in some cases leads to race conditions in
services. Thus, running a role is not idempotent which we fix by
introducing a `service_update_password` variable. So whenever password
needs to be reseted/updated, the variable should be supplied for that.

Change-Id: I11b1046ea91cef7de0b2f6433baabbb144e07700
Closes-Bug: #2023370
(cherry picked from commit f35126af68)
2023-07-11 12:07:34 +00:00

15 lines
556 B
YAML

---
features:
- |
Added variable ``service_update_password`` that will control whether
password should be updated, which defaults to `False`. This changes
previous behaviour when service passwords were always updated in
the keystone on role run.
Please use this variable whenever you need to update a password for
the service.
fixes:
- |
Different race conditions in services are fixed when keystone password
is forcefully reseted.
Closes Bug: `#2023370 <https://bugs.launchpad.net/openstack-ansible/+bug/2023370>`_