From bbaa7280b9d7a3dbab9e4ed7766953a5335aa35f Mon Sep 17 00:00:00 2001 From: Jawad Seddar Date: Thu, 23 May 2019 10:04:46 +0200 Subject: [PATCH] Fix exit not found error in liveness probe manifest (#38) --- 11-probes/01-liveness-probe.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/11-probes/01-liveness-probe.yml b/11-probes/01-liveness-probe.yml index e61906b..f18925c 100644 --- a/11-probes/01-liveness-probe.yml +++ b/11-probes/01-liveness-probe.yml @@ -10,7 +10,8 @@ spec: livenessProbe: exec: command: - - exit - - "1" + - /bin/bash + - -c + - "exit 1" initialDelaySeconds: 5 periodSeconds: 5