diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fac158..e5c8cc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ## Changelog +### V2.2.2 + +#### Non-Breaking Changes + +- Disabled port-fixer livenessProbe due to reliability issues + ### V2.2.1 #### Non-Breaking Changes diff --git a/charts/factorio-server-charts/Chart.yaml b/charts/factorio-server-charts/Chart.yaml index 34f1543..0f856c7 100644 --- a/charts/factorio-server-charts/Chart.yaml +++ b/charts/factorio-server-charts/Chart.yaml @@ -20,7 +20,7 @@ sources: # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 2.2.1 +version: 2.2.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/factorio-server-charts/templates/deployment.yaml b/charts/factorio-server-charts/templates/deployment.yaml index 3f9b05e..d008038 100644 --- a/charts/factorio-server-charts/templates/deployment.yaml +++ b/charts/factorio-server-charts/templates/deployment.yaml @@ -218,13 +218,16 @@ spec: - --ip=127.0.0.1 - --port=34197 - --remotePort={{ .Values.port_fixer.port | default .Values.service.port }} - livenessProbe: - httpGet: - path: /health - port: port-fixer - periodSeconds: 10 - initialDelaySeconds: 5 - failureThreshold: 3 + # + # Disabled due to reliability issues: https://github.com/ZCube/factorio-port-fixer/issues/1 + # + # livenessProbe: + # httpGet: + # path: /health + # port: port-fixer + # periodSeconds: 10 + # initialDelaySeconds: 5 + # failureThreshold: 3 ports: - name: port-fixer containerPort: 34197