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