Skip to content

Commit

Permalink
fix(edge): Fixes enterprise helm chart to allow config of livenessPro…
Browse files Browse the repository at this point in the history
…be (#671)

* fix(edge): Fixes enterprise helm chart to allow config of livenessProbe

* fix(edge): Fixes enterprise helm chart to allow config of livenessProbe

* version bump

* fixes

* fixes

* fixes

* pls use 1.23
  • Loading branch information
devanbenz authored Aug 28, 2024
1 parent b217111 commit 1606314
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/influxdb-enterprise/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
version: 0.1.22
version: 0.1.23
appVersion: 1.10.0
engine: gotpl

Expand Down
1 change: 1 addition & 0 deletions charts/influxdb-enterprise/templates/data-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ spec:
port: http
{{- if .Values.data.https.enabled }}
scheme: HTTPS
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds | default 3600 }}
{{- end }}
readinessProbe:
initialDelaySeconds: 30
Expand Down
1 change: 1 addition & 0 deletions charts/influxdb-enterprise/templates/meta-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ spec:
port: http
{{- if .Values.meta.https.enabled }}
scheme: HTTPS
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds | default 3600 }}
{{- end }}
readinessProbe:
httpGet:
Expand Down
5 changes: 5 additions & 0 deletions charts/influxdb-enterprise/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ serviceAccount:
name: ''
annotations: {}

## Customize liveness, readiness and startup probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
livenessProbe: {}
# initialDelaySeconds: 3600

## The name of a secret in the same kubernetes namespace which contain values
## to be added to the environment.
## This can be used, for example, to set the INFLUXDB_ENTERPRISE_LICENSE_KEY
Expand Down

0 comments on commit 1606314

Please sign in to comment.