diff --git a/stable/semaphore/Chart.yaml b/stable/semaphore/Chart.yaml index 1fb66e2..fc34b93 100644 --- a/stable/semaphore/Chart.yaml +++ b/stable/semaphore/Chart.yaml @@ -35,4 +35,4 @@ name: semaphore sources: - https://github.com/semaphoreui/semaphore type: application -version: 16.0.11 +version: 16.0.12 diff --git a/stable/semaphore/templates/deployment.yaml b/stable/semaphore/templates/deployment.yaml index d330050..357b026 100644 --- a/stable/semaphore/templates/deployment.yaml +++ b/stable/semaphore/templates/deployment.yaml @@ -550,14 +550,10 @@ spec: protocol: TCP livenessProbe: - httpGet: - path: / - port: http + {{- toYaml .Values.livenessProbe | nindent 12 }} readinessProbe: - httpGet: - path: / - port: http + {{- toYaml .Values.readinessProbe | nindent 12 }} {{- if .Values.resources }} resources: diff --git a/stable/semaphore/values.yaml b/stable/semaphore/values.yaml index 80321bc..f8f543c 100644 --- a/stable/semaphore/values.yaml +++ b/stable/semaphore/values.yaml @@ -405,6 +405,18 @@ admin: # -- Existing secret to use for admin existingSecret: +# -- Liveness probe configuration +livenessProbe: + httpGet: + path: /api/ping + port: http + +# -- Readiness probe configuration +readinessProbe: + httpGet: + path: /api/ping + port: http + # -- Resources for the deployment resources: limits: {}