-
Notifications
You must be signed in to change notification settings - Fork 7
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
Add integration test framework #492
base: master
Are you sure you want to change the base?
Changes from 5 commits
da9d034
f9de4bf
8b7e875
f6a61d4
e9282cc
78b6e14
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,3 +22,10 @@ services: | |
REQUESTS_CA_BUNDLE: /etc/ssl/certs/ca-certificates.crt | ||
restart: always | ||
logging: *default-logging | ||
healthcheck: | ||
test: ["CMD", "curl", "--fail", "${BIRDHOUSE_FQDN_PUBLIC}"] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ideally we should use an internal endpoint/port to avoid loop-back requests. Also, consider using another endpoint such as the |
||
interval: 60s | ||
timeout: 5s | ||
retries: 3 | ||
start_period: 30s | ||
start_interval: 5s |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If
$(print_config_command)
was used, wouldn'tif [ -z "$1" ]; then
work the same?Just curious.
no-suffix
is fine, but seems like a roundabout way with unnecessary hardcoded values.