Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OpenStack - Improve connection check after instance creation #231

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions src/molecule_plugins/openstack/playbooks/create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,3 @@
content: "{{ instance_conf }}"
dest: "{{ molecule_instance_config }}"
mode: "0600"

- name: Wait for SSH
ansible.builtin.wait_for:
port: 22
host: "{{ item.address }}"
search_regex: SSH
delay: 10
loop: "{{ lookup('file', molecule_instance_config) | from_yaml }}"
5 changes: 5 additions & 0 deletions src/molecule_plugins/openstack/playbooks/prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
hosts: all
gather_facts: false
tasks:
- name: Wait for SSH
ansible.builtin.wait_for_connection:
delay: 10
timeout: 180

- name: Gather system info
ansible.builtin.raw: uname
register: raw_uname
Expand Down
Loading