Change /bin/ash to /bin/sh as requested by @shanecmd

This commit is contained in:
Wander Boessenkool 2019-10-17 21:37:51 +02:00
parent 038fd9271d
commit d6134fb194

View File

@ -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