diff --git a/k8s/deployment.yaml b/k8s/deployment.yaml index 2c3e824..4024d33 100644 --- a/k8s/deployment.yaml +++ b/k8s/deployment.yaml @@ -46,7 +46,7 @@ spec: resources: limits: cpu: "0.50" - memory: "128Mi" + memory: "256Mi" requests: cpu: "0.25" - memory: "64Mi" + memory: "128Mi" diff --git a/service/routes.py b/service/routes.py index 8ccfbd5..07c7085 100644 --- a/service/routes.py +++ b/service/routes.py @@ -43,6 +43,20 @@ def index(): ) +###################################################################### +# HEALTH ENDPOINT FOR K3 CLUSTER +###################################################################### +@app.route("/health") +def health(): + """Health endpoint""" + return ( + jsonify( + message=status.HTTP_200_OK, + ), + status.HTTP_200_OK, + ) + + ###################################################################### # R E S T A P I E N D P O I N T S ######################################################################