Skip to content

Commit 63145c6

Browse files
brophyjaJames Brophyalespour
authored
fix(influxdb3-ent): set container status probes to 'HTTPS' if 'securi… (#765)
* fix(influxdb3-ent): set container status probes to 'HTTPS' if 'security.tls.enabled: true' * chore: bump chart version --------- Co-authored-by: James Brophy <jbrophy@cm-green.bcloud.apcoe2.boeing.com> Co-authored-by: Ales Pour <ales.pour@bonitoo.io>
1 parent 049461c commit 63145c6

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

charts/influxdb3-enterprise/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: influxdb3-enterprise
33
description: A Helm chart for deploying InfluxDB 3 Enterprise on Kubernetes
44
type: application
5-
version: 0.1.2
5+
version: 0.1.3
66
appVersion: "3.6.0"
77
keywords:
88
- influxdb

charts/influxdb3-enterprise/templates/_helpers.tpl

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,9 @@ livenessProbe:
185185
httpGet:
186186
path: /health
187187
port: http
188+
{{- if .Values.security.tls.enabled }}
189+
scheme: HTTPS
190+
{{- end }}
188191
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
189192
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
190193
timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }}
@@ -193,6 +196,9 @@ readinessProbe:
193196
httpGet:
194197
path: /health
195198
port: http
199+
{{- if .Values.security.tls.enabled }}
200+
scheme: HTTPS
201+
{{- end }}
196202
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
197203
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
198204
timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }}
@@ -201,6 +207,9 @@ startupProbe:
201207
httpGet:
202208
path: /health
203209
port: http
210+
{{- if .Values.security.tls.enabled }}
211+
scheme: HTTPS
212+
{{- end }}
204213
initialDelaySeconds: {{ .Values.probes.startup.initialDelaySeconds }}
205214
periodSeconds: {{ .Values.probes.startup.periodSeconds }}
206215
timeoutSeconds: {{ .Values.probes.startup.timeoutSeconds }}

0 commit comments

Comments
 (0)