This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: double wait time for SSH (#2066)
* chore: dible wait time for SSH It seems that for CentOS machines, SSH takes more than 1min to come * chore: use multiline * chore: include OpenTelemetry traces for Ansible (cherry picked from commit a176d63)
- Loading branch information
1 parent
6f9cfec
commit ee7fc56
Showing
3 changed files
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[defaults] | ||
callbacks_enabled = community.general.opentelemetry |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
- name: Wait for SSH to come up | ||
wait_for: host={{ inventory_hostname }} port=22 delay=10 timeout=60 | ||
wait_for: | ||
host: "{{ inventory_hostname }}" | ||
port: 22 | ||
delay: 10 | ||
timeout: 120 |