Merge "Allow passwords to be reset (force rotated)"

This commit is contained in:
Zuul 2020-04-16 07:42:54 +00:00 committed by Gerrit Code Review
commit cfd3e13ff7
1 changed files with 3 additions and 2 deletions

View File

@ -24,6 +24,7 @@
container: overcloud container: overcloud
source_url: null source_url: null
generate_passwords: true generate_passwords: true
reset_passwords: false
validate_stack: true validate_stack: true
handlers: handlers:
@ -62,8 +63,8 @@
- name: Generate passwords if does not exist and update plan - name: Generate passwords if does not exist and update plan
tripleo_passwords_rotate: tripleo_passwords_rotate:
container: "{{ container }}" container: "{{ container }}"
rotate_passwords: false rotate_passwords: "{{ reset_passwords }}"
when: generate_passwords|bool when: generate_passwords|bool or reset_passwords|bool
no_log: true no_log: true
- name: Prepare Container images and update plan - name: Prepare Container images and update plan