Merge "Fix --check argument for overcloud host configure"

This commit is contained in:
Zuul 2021-10-28 15:27:04 +00:00 committed by Gerrit Code Review
commit 97a7dc6b22
3 changed files with 8 additions and 0 deletions

View File

@ -17,6 +17,7 @@
module: command ssh -o BatchMode=yes -p {{ ssh_port }} {{ ssh_user }}@{{ ssh_host }} hostname
failed_when: false
changed_when: false
check_mode: no
register: ssh_result
vars:
ssh_user: "{{ ansible_user }}"

View File

@ -3,6 +3,7 @@
command: systemctl list-units glean*.service --no-legend --no-pager --state=loaded
register: glean_services
changed_when: False
check_mode: no
- name: Ensure Glean services are stopped and disabled
service:

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes some issues seen when using the ``--check`` argument with ``kayobe
overcloud host configure``. See `story 2004798
<https://storyboard.openstack.org/#!/story/2004798>`__.