Skip to content

Commit

Permalink
Update gitlab-runner.yaml
Browse files Browse the repository at this point in the history
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
  • Loading branch information
alextremblay authored Nov 22, 2018
1 parent 7a50f95 commit 5814ceb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gitlab-ci-with-openshift/gitlab-runner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -154,15 +154,15 @@ objects:
mountPath: /scripts
livenessProbe:
exec:
command: ["/usr/bin/pgrep","gitlab-ci-multi"]
command: ["/usr/bin/pgrep","gitlab-runner"]
initialDelaySeconds: 60
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
readinessProbe:
exec:
command: ["/usr/bin/pgrep","gitlab-ci-multi"]
command: ["/usr/bin/pgrep","gitlab-runner"]
initialDelaySeconds: 10
timeoutSeconds: 1
periodSeconds: 10
Expand Down

0 comments on commit 5814ceb

Please sign in to comment.