From d6134fb194d038cd0ecdc645878edba9402b1668 Mon Sep 17 00:00:00 2001 From: Wander Boessenkool Date: Thu, 17 Oct 2019 21:37:51 +0200 Subject: [PATCH] Change /bin/ash to /bin/sh as requested by @shanecmd --- installer/roles/kubernetes/templates/deployment.yml.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/roles/kubernetes/templates/deployment.yml.j2 b/installer/roles/kubernetes/templates/deployment.yml.j2 index cb6540a0ff..4162742cee 100644 --- a/installer/roles/kubernetes/templates/deployment.yml.j2 +++ b/installer/roles/kubernetes/templates/deployment.yml.j2 @@ -270,7 +270,7 @@ spec: livenessProbe: exec: command: - - /bin/ash + - /bin/sh - -c - "wget -O - --header \"Authorization: Basic {{ ( rabbitmq_user + ':' + rabbitmq_password ) | b64encode }}\" http://localhost:15672/api/healthchecks/node | grep -qF \"{\\\"status\\\":\\\"ok\\\"}\"" initialDelaySeconds: 30 @@ -278,7 +278,7 @@ spec: readinessProbe: exec: command: - - /bin/ash + - /bin/sh - -c - "wget -O - --header \"Authorization: Basic {{ ( rabbitmq_user + ':' + rabbitmq_password ) | b64encode }}\" http://localhost:15672/api/healthchecks/node | grep -qF \"{\\\"status\\\":\\\"ok\\\"}\"" initialDelaySeconds: 10