Skip to content

Commit ee09ae6

Browse files
author
James Rhoat
authored
Merge pull request #26 from ZCube/fix/liveness-probe
2 parents bd1f6c6 + 30e7b12 commit ee09ae6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

charts/factorio-server-charts/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ sources:
2020
# This is the chart version. This version number should be incremented each time you make changes
2121
# to the chart and its templates, including the app version.
2222
# Versions are expected to follow Semantic Versioning (https://semver.org/)
23-
version: 1.2.0
23+
version: 1.2.1
2424

2525
# This is the version number of the application being deployed. This version number should be
2626
# incremented each time you make changes to the application. Versions are not expected to

charts/factorio-server-charts/templates/deployment.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,9 @@ spec:
114114
livenessProbe:
115115
exec:
116116
command:
117-
- '/bin/ps aux | /bin/grep factorio'
117+
- /bin/bash
118+
- -ec
119+
- '/bin/ps aux | /bin/grep -v grep | /bin/grep factorio'
118120
periodSeconds: 10
119121
initialDelaySeconds: 5
120122
failureThreshold: 3

0 commit comments

Comments
 (0)