Compare commits

...

1 Commits

Author SHA1 Message Date
90970ef172 fix events health endpoint 2024-04-13 23:19:59 -06:00
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
apiVersion: v2
name: taiga
version: 0.1.6
version: 0.1.7
description: Chart for Taiga
keywords:
- kanban

View File

@@ -74,7 +74,7 @@ spec:
{{- if .Values.events.livenessProbe.enabled }}
livenessProbe:
httpGet:
path: /admin/login/
path: /healthz
port: {{ .Values.events.service.port }}
initialDelaySeconds: {{ .Values.events.livenessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.events.livenessProbe.periodSeconds }}
@@ -86,7 +86,7 @@ spec:
{{- if .Values.events.readinessProbe.enabled }}
readinessProbe:
httpGet:
path: /admin/login/
path: /healthz
port: {{ .Values.events.service.port }}
initialDelaySeconds: {{ .Values.events.readinessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.events.readinessProbe.periodSeconds }}