diff --git a/charts/gitlab-ci-runner-exporter/templates/deployment.yaml b/charts/gitlab-ci-runner-exporter/templates/deployment.yaml index 1a6061493..16792319e 100644 --- a/charts/gitlab-ci-runner-exporter/templates/deployment.yaml +++ b/charts/gitlab-ci-runner-exporter/templates/deployment.yaml @@ -74,7 +74,7 @@ spec: protocol: TCP livenessProbe: httpGet: &httpProbe - path: /healthz + path: /{{ .Values.httpProbePath }} port: http periodSeconds: 20 timeoutSeconds: 5 diff --git a/charts/gitlab-ci-runner-exporter/values.yaml b/charts/gitlab-ci-runner-exporter/values.yaml index c77cd9d1e..96433b4be 100644 --- a/charts/gitlab-ci-runner-exporter/values.yaml +++ b/charts/gitlab-ci-runner-exporter/values.yaml @@ -313,3 +313,5 @@ serviceAccount: # serviceAccount.name -- the name of the service account to use. # If not set and create is true, a name is generated using the fullname template name: "" + +httpProbePath: /healthz \ No newline at end of file