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

Perform port check for node availability #25

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
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
17 changes: 14 additions & 3 deletions dcos.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
---
- name: Wait for instances to become reachable
hosts: all
gather_facts: no
tasks:
- name: Wait for instances to become reachable
- name: Wait for instances to respond to ping
wait_for_connection:
sleep: 10
timeout: 120

- name: Wait for port 22 to be open
wait_for:
port: 22
timeout: 660
state: started
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm. We could add it for now


- name: Now we gather facts (lol yep)
hosts: all
tasks:
- name: Now lets gather facts
setup:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is already done in the next step


- name: Collect DC/OS versions
hosts: all
Expand Down