Skip to content

Commit

Permalink
Healthcheck for Kepler
Browse files Browse the repository at this point in the history
Since Kepler container image doesn't have either "ss" or "netstat"
commands, check it's health by making curl requests to port 8888.
  • Loading branch information
yadneshk committed Dec 3, 2024
1 parent 1c2675c commit 27aa63c
Showing 1 changed file with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,16 @@
# License for the specific language governing permissions and limitations
# under the License.

ss -lnp | grep $1 || netstat -plnt | grep -i listen | grep $1
URL="http://0.0.0.0:8888"

# Get the HTTP status code using curl
HTTP_CODE=$(curl -s -o /dev/null -w "%{http_code}" $URL)

# If the HTTP status code is not 200, exit with a non-zero code
if [ "$HTTP_CODE" -ne 200 ]; then
echo "Health check failed: HTTP status code $HTTP_CODE"
exit 1
fi

echo "Health check passed: HTTP status code $HTTP_CODE"
exit 0

0 comments on commit 27aa63c

Please sign in to comment.