diff --git a/charts/taiga/Chart.yaml b/charts/taiga/Chart.yaml index eb02e9a..9377cac 100644 --- a/charts/taiga/Chart.yaml +++ b/charts/taiga/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: taiga -version: 0.1.6 +version: 0.1.7 description: Chart for Taiga keywords: - kanban diff --git a/charts/taiga/templates/deployment-events.yaml b/charts/taiga/templates/deployment-events.yaml index 7246601..ba7e7f1 100644 --- a/charts/taiga/templates/deployment-events.yaml +++ b/charts/taiga/templates/deployment-events.yaml @@ -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 }}