From 11e01e919075d5b8d28fb1cec2ffee9ab997700c Mon Sep 17 00:00:00 2001 From: Jawad Seddar Date: Thu, 23 May 2019 10:12:28 +0200 Subject: [PATCH] Fix exit not found error in readiness probe manifest (#40) --- 11-probes/02-readiness-probe.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/11-probes/02-readiness-probe.yml b/11-probes/02-readiness-probe.yml index 2c23680..e4c5c2a 100644 --- a/11-probes/02-readiness-probe.yml +++ b/11-probes/02-readiness-probe.yml @@ -21,8 +21,9 @@ spec: readinessProbe: exec: command: - - exit - - "1" + - /bin/bash + - -c + - "exit 1" initialDelaySeconds: 5 periodSeconds: 5 ---