From 7611621340f21a6264bbff59129a0e9fc1820b5b Mon Sep 17 00:00:00 2001 From: Dustin Falgout Date: Tue, 26 May 2020 19:35:44 -0500 Subject: [PATCH] Update Helm Chart for cloud-server --- charts/cloud-server/Chart.yaml | 2 +- charts/cloud-server/templates/cloud-server.yml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/charts/cloud-server/Chart.yaml b/charts/cloud-server/Chart.yaml index 26b8526..126cc87 100644 --- a/charts/cloud-server/Chart.yaml +++ b/charts/cloud-server/Chart.yaml @@ -6,4 +6,4 @@ maintainers: - email: dustin@elegantthemes.com name: Elegant Themes name: cloud-server -version: 0.2.2 +version: 0.2.3 diff --git a/charts/cloud-server/templates/cloud-server.yml b/charts/cloud-server/templates/cloud-server.yml index f791f66..54ba6e9 100644 --- a/charts/cloud-server/templates/cloud-server.yml +++ b/charts/cloud-server/templates/cloud-server.yml @@ -43,6 +43,8 @@ spec: livenessProbe: exec: command: + - 'bash' + - '-c' - 'SCRIPT_NAME=/healthz' - 'SCRIPT_FILENAME={{ .Values.VIRTUAL_ROOT }}/healthz.php' - 'REQUEST_METHOD=GET' @@ -57,6 +59,8 @@ spec: readinessProbe: exec: command: + - 'bash' + - '-c' - 'SCRIPT_NAME=/healthz' - 'SCRIPT_FILENAME={{ .Values.VIRTUAL_ROOT }}/healthz.php' - 'REQUEST_METHOD=GET'