From 5814cebf63b1e572a12a163e6ac01d7da75f34f8 Mon Sep 17 00:00:00 2001 From: Alex Tremblay Date: Thu, 22 Nov 2018 11:57:21 -0500 Subject: [PATCH] Update gitlab-runner.yaml Update liveness & readiness probes the process name in the gitlab-runner docker image has changed. the process that gets spawned inside the container is now called gitlab-runner --- gitlab-ci-with-openshift/gitlab-runner.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gitlab-ci-with-openshift/gitlab-runner.yaml b/gitlab-ci-with-openshift/gitlab-runner.yaml index f061ce6..6414ddb 100644 --- a/gitlab-ci-with-openshift/gitlab-runner.yaml +++ b/gitlab-ci-with-openshift/gitlab-runner.yaml @@ -154,7 +154,7 @@ objects: mountPath: /scripts livenessProbe: exec: - command: ["/usr/bin/pgrep","gitlab-ci-multi"] + command: ["/usr/bin/pgrep","gitlab-runner"] initialDelaySeconds: 60 timeoutSeconds: 1 periodSeconds: 10 @@ -162,7 +162,7 @@ objects: failureThreshold: 3 readinessProbe: exec: - command: ["/usr/bin/pgrep","gitlab-ci-multi"] + command: ["/usr/bin/pgrep","gitlab-runner"] initialDelaySeconds: 10 timeoutSeconds: 1 periodSeconds: 10