Skip to content

Commit

Permalink
Fix wait_for for ports in ansible
Browse files Browse the repository at this point in the history
  • Loading branch information
iknite committed Mar 8, 2019
1 parent c03b925 commit 1ec311c
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions deploy/aws/provision/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,15 +108,18 @@
- /var/qed/qed-stop.sh
- /var/qed/qed-start.sh
- /var/qed/exporter-start.sh
# - name: wait for raised api port
# wait_for:
# port: 8800
# - name: wait for raised mgmt port
# wait_for:
# port: 8700
# - name: wait for raised metrics port
# wait_for:
# port: 8600
- name: wait for raised api port
wait_for:
port: 8800
host: "{{ansible_hostname}}"
- name: wait for raised mgmt port
wait_for:
port: 8700
host: "{{ansible_hostname}}"
- name: wait for raised metrics port
wait_for:
port: 8600
host: "{{ansible_hostname}}"

tags:
- start-qed
Expand Down

0 comments on commit 1ec311c

Please sign in to comment.