From 0c8d3ffe51733222f72502e1b7076e53ae136d2d Mon Sep 17 00:00:00 2001 From: Chris Kaczor Date: Mon, 14 Jun 2021 16:07:35 -0400 Subject: [PATCH] Add readyness and liveness probes --- Weather/SerialReader/deploy/manifest.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Weather/SerialReader/deploy/manifest.yaml b/Weather/SerialReader/deploy/manifest.yaml index f08ef6d..b3bc729 100644 --- a/Weather/SerialReader/deploy/manifest.yaml +++ b/Weather/SerialReader/deploy/manifest.yaml @@ -92,6 +92,14 @@ spec: imagePullPolicy: Always securityContext: privileged: true + livenessProbe: + httpGet: + path: health/health + port: 80 + readinessProbe: + httpGet: + path: health/ready + port: 80 env: - name: Weather__Queue__Host value: weather-queue