Skip to content
New issue

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

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

Already on GitHub? # to your account

[v14] Increasing timeout for pam smoke tests #48232

Merged
merged 2 commits into from
Nov 1, 2024
Merged
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
6 changes: 5 additions & 1 deletion build.assets/charts/smoke_tests/01_pam/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,8 @@
#
# If teleport is still up when the timeout expires, then we're
# probably OK
timeout --preserve-status 10s docker run --platform $1 --rm --entrypoint /usr/local/bin/teleport -v "$(pwd):/etc/teleport" $2 start -c /etc/teleport/config.yaml
#
# A timeout of 20s is set to account for potentially slow startup times.
# QEMU eumlation may slow startup time for some platforms and during that
# time the process won't shutdown gracefully resulting in a nonzero code.
timeout --preserve-status 20s docker run --platform $1 --rm --entrypoint /usr/local/bin/teleport -v "$(pwd):/etc/teleport" $2 start -c /etc/teleport/config.yaml
Loading