File tree Expand file tree Collapse file tree 3 files changed +17
-8
lines changed
charts/factorio-server-charts Expand file tree Collapse file tree 3 files changed +17
-8
lines changed Original file line number Diff line number Diff line change 1
1
## Changelog
2
2
3
+ ### V2.2.2
4
+
5
+ #### Non-Breaking Changes
6
+
7
+ - Disabled port-fixer livenessProbe due to reliability issues
8
+
3
9
### V2.2.1
4
10
5
11
#### Non-Breaking Changes
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ sources:
20
20
# This is the chart version. This version number should be incremented each time you make changes
21
21
# to the chart and its templates, including the app version.
22
22
# Versions are expected to follow Semantic Versioning (https://semver.org/)
23
- version : 2.2.1
23
+ version : 2.2.2
24
24
25
25
# This is the version number of the application being deployed. This version number should be
26
26
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change @@ -218,13 +218,16 @@ spec:
218
218
- --ip=127.0.0.1
219
219
- --port=34197
220
220
- --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
228
231
ports :
229
232
- name : port-fixer
230
233
containerPort : 34197
You can’t perform that action at this time.
0 commit comments