From dc3e82364d8bb01d2acb5da83805cf88e2f10aa8 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 4 Jan 2022 15:44:07 +0000 Subject: [PATCH] fix live check urls --- charts/databunker/Chart.yaml | 2 +- charts/databunker/templates/deployment.yaml | 11 +++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/charts/databunker/Chart.yaml b/charts/databunker/Chart.yaml index 9fa4231..51d4a26 100644 --- a/charts/databunker/Chart.yaml +++ b/charts/databunker/Chart.yaml @@ -33,4 +33,4 @@ name: databunker sources: - https://github.com/securitybunker/databunker - https://databunker.org/ -version: 1.0.10 +version: 1.0.12 diff --git a/charts/databunker/templates/deployment.yaml b/charts/databunker/templates/deployment.yaml index c130dcd..19041b3 100644 --- a/charts/databunker/templates/deployment.yaml +++ b/charts/databunker/templates/deployment.yaml @@ -162,7 +162,8 @@ spec: livenessProbe: httpGet: path: {{ .Values.livenessProbe.path }} - port: http + scheme: HTTPS + port: https initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }} periodSeconds: {{ .Values.livenessProbe.periodSeconds }} timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }} @@ -175,7 +176,8 @@ spec: readinessProbe: httpGet: path: {{ .Values.readinessProbe.path }} - port: http + scheme: HTTPS + port: https initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }} periodSeconds: {{ .Values.readinessProbe.periodSeconds }} timeoutSeconds: {{ .Values.readinessProbe.timeoutSeconds }} @@ -188,10 +190,11 @@ spec: startupProbe: httpGet: path: {{ .Values.startupProbe.path }} - port: http + scheme: HTTPS + port: https httpHeaders: - name: Host - value: {{ include "magento.host" . | quote }} + value: {{ include "databunker.host" . | quote }} initialDelaySeconds: {{ .Values.startupProbe.initialDelaySeconds }} periodSeconds: {{ .Values.startupProbe.periodSeconds }} timeoutSeconds: {{ .Values.startupProbe.timeoutSeconds }}