Additional retries for ssh wait check
This patch adds additional retries to the ssh wait check tasks which were unintentionally omitted from https://review.openstack.org/218572 Change-Id: Id8f7df5e283a9f61373f1bfb167a4c0bd098cc25 Closes-Bug: #1490142
This commit is contained in:
parent
424a766b5a
commit
91fc87ae38
@ -39,6 +39,9 @@
|
|||||||
search_regex: "OpenSSH"
|
search_regex: "OpenSSH"
|
||||||
host: "{{ ansible_ssh_host }}"
|
host: "{{ ansible_ssh_host }}"
|
||||||
delegate_to: "{{ physical_host }}"
|
delegate_to: "{{ physical_host }}"
|
||||||
|
register: ssh_wait_check
|
||||||
|
until: ssh_wait_check|success
|
||||||
|
retries: 3
|
||||||
tags:
|
tags:
|
||||||
- ssh-wait
|
- ssh-wait
|
||||||
- name: Sort the rabbitmq servers
|
- name: Sort the rabbitmq servers
|
||||||
|
@ -50,6 +50,9 @@
|
|||||||
search_regex: "OpenSSH"
|
search_regex: "OpenSSH"
|
||||||
host: "{{ ansible_ssh_host }}"
|
host: "{{ ansible_ssh_host }}"
|
||||||
delegate_to: "{{ physical_host }}"
|
delegate_to: "{{ physical_host }}"
|
||||||
|
register: ssh_wait_check
|
||||||
|
until: ssh_wait_check|success
|
||||||
|
retries: 3
|
||||||
tags:
|
tags:
|
||||||
- ssh-wait
|
- ssh-wait
|
||||||
- name: Sort the rabbitmq servers
|
- name: Sort the rabbitmq servers
|
||||||
|
@ -55,6 +55,9 @@
|
|||||||
search_regex: "OpenSSH"
|
search_regex: "OpenSSH"
|
||||||
host: "{{ ansible_ssh_host }}"
|
host: "{{ ansible_ssh_host }}"
|
||||||
delegate_to: "{{ physical_host }}"
|
delegate_to: "{{ physical_host }}"
|
||||||
|
register: ssh_wait_check
|
||||||
|
until: ssh_wait_check|success
|
||||||
|
retries: 3
|
||||||
tags:
|
tags:
|
||||||
- ssh-wait
|
- ssh-wait
|
||||||
- name: Sort the rabbitmq servers
|
- name: Sort the rabbitmq servers
|
||||||
|
@ -50,6 +50,9 @@
|
|||||||
search_regex: "OpenSSH"
|
search_regex: "OpenSSH"
|
||||||
host: "{{ ansible_ssh_host }}"
|
host: "{{ ansible_ssh_host }}"
|
||||||
delegate_to: "{{ physical_host }}"
|
delegate_to: "{{ physical_host }}"
|
||||||
|
register: ssh_wait_check
|
||||||
|
until: ssh_wait_check|success
|
||||||
|
retries: 3
|
||||||
tags:
|
tags:
|
||||||
- ssh-wait
|
- ssh-wait
|
||||||
roles:
|
roles:
|
||||||
|
Loading…
Reference in New Issue
Block a user