Skip to content

Commit 5253358

Browse files
committed
disable port-fixer livenessProbe
1 parent bb15e22 commit 5253358

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
## Changelog
22

3+
### V2.2.2
4+
5+
#### Non-Breaking Changes
6+
7+
- Disabled port-fixer livenessProbe due to reliability issues
8+
39
### V2.2.1
410

511
#### Non-Breaking Changes

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: 2.2.1
23+
version: 2.2.2
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: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -218,13 +218,16 @@ spec:
218218
- --ip=127.0.0.1
219219
- --port=34197
220220
- --remotePort={{ .Values.port_fixer.port | default .Values.service.port }}
221-
livenessProbe:
222-
httpGet:
223-
path: /health
224-
port: port-fixer
225-
periodSeconds: 10
226-
initialDelaySeconds: 5
227-
failureThreshold: 3
221+
#
222+
# Disabled due to reliability issues: https://github.com/ZCube/factorio-port-fixer/issues/1
223+
#
224+
# livenessProbe:
225+
# httpGet:
226+
# path: /health
227+
# port: port-fixer
228+
# periodSeconds: 10
229+
# initialDelaySeconds: 5
230+
# failureThreshold: 3
228231
ports:
229232
- name: port-fixer
230233
containerPort: 34197

0 commit comments

Comments
 (0)