Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/influxdb3-enterprise/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: influxdb3-enterprise
description: A Helm chart for deploying InfluxDB 3 Enterprise on Kubernetes
type: application
version: 0.1.2
version: 0.1.3
appVersion: "3.6.0"
keywords:
- influxdb
Expand Down
9 changes: 9 additions & 0 deletions charts/influxdb3-enterprise/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,9 @@ livenessProbe:
httpGet:
path: /health
port: http
{{- if .Values.security.tls.enabled }}
scheme: HTTPS
{{- end }}
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
periodSeconds: {{ .Values.probes.liveness.periodSeconds }}
timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }}
Expand All @@ -193,6 +196,9 @@ readinessProbe:
httpGet:
path: /health
port: http
{{- if .Values.security.tls.enabled }}
scheme: HTTPS
{{- end }}
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
periodSeconds: {{ .Values.probes.readiness.periodSeconds }}
timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }}
Expand All @@ -201,6 +207,9 @@ startupProbe:
httpGet:
path: /health
port: http
{{- if .Values.security.tls.enabled }}
scheme: HTTPS
{{- end }}
initialDelaySeconds: {{ .Values.probes.startup.initialDelaySeconds }}
periodSeconds: {{ .Values.probes.startup.periodSeconds }}
timeoutSeconds: {{ .Values.probes.startup.timeoutSeconds }}
Expand Down