UNCLASSIFIED

Commit bb5a76b8 authored by Michael Simmons's avatar Michael Simmons
Browse files

Merge branch 'healthcheck-addition' into 'development'

Added Healthcheck

See merge request !6
parents 12fcab46 8b6910a6
Pipeline #234970 failed with stages
in 48 minutes and 56 seconds
# Build the intermediate container
ARG BASE_REGISTRY=registry1.dsop.io/ironbank/redhat/ubi
ARG BASE_IMAGE=ubi8
ARG BASE_REGISTRY=registry1.dso.mil
ARG BASE_IMAGE=ironbank/redhat/ubi/ubi8
ARG BASE_TAG=8.3
FROM kubeflow-images-public/admission-webhook:v20190520-v0-139-gcee39dbc-dirty-0d8f4c AS base
FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG}
......@@ -15,4 +15,5 @@ RUN find / -path /proc -prune -o -perm /2000 -exec chmod g-s {} \;
RUN chown -R kf /app
USER kf
WORKDIR /app
HEALTHCHECK --interval=30s --timeout=30s --start-period=5s --retries=3 CMD [ "curl -sL -w "%{http_code}\n" https://127.0.0.1:4443 -o /dev/null" ]
ENTRYPOINT [ "./webhook" ]
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment