-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update script to keep state of sequence files - imposm * Update docker file and start.sh - imposm * Add liveness probe - imposm * Add UPLOAD_EXPIRED_FILES env var for imposm * Add default value for UPLOAD_EXPIRED_FILES in imposm * set initialDelaySeconds: 3600 in liveness probe - imposm * Increase initialDelaySeconds to 2 hours ---------
- Loading branch information
Showing
6 changed files
with
186 additions
and
155 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
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,8 @@ | ||
#!/usr/bin/env bash | ||
if ps aux | grep -v grep | grep "imposm" >/dev/null; then | ||
echo "imposm process is running." | ||
exit 0 | ||
else | ||
echo "imposm process is not running." 1>&2 | ||
exit 1 | ||
fi |
Oops, something went wrong.