diff --git a/CHANGELOG.md b/CHANGELOG.md index c5eb889..480ffda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v1.2.1 + +## Fix + - Adjust initialDelaySecond for startupProbe to avoid waiting 5min even if the instance starts quickly + - Adjust startupProbe port to use 9000 instead of http + # v1.2.0 ## Features diff --git a/Chart.yaml b/Chart.yaml index 98cf2b3..c027feb 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -2,4 +2,4 @@ apiVersion: v1 appVersion: "v2.3.0-buster" description: A Helm chart for Kubernetes name: peertube -version: 1.1.2 +version: 1.2.1 diff --git a/templates/deployment.yaml b/templates/deployment.yaml index 668705d..c4694dd 100644 --- a/templates/deployment.yaml +++ b/templates/deployment.yaml @@ -103,8 +103,8 @@ spec: startupProbe: httpGet: path: / - port: http - initialDelaySeconds: 300 + port: 9000 + initialDelaySeconds: 60 failureThreshold: 3000 periodSeconds: 10 livenessProbe: @@ -134,8 +134,8 @@ spec: startupProbe: httpGet: path: / - port: http - initialDelaySeconds: 300 + port: 9000 + initialDelaySeconds: 60 failureThreshold: 3000 periodSeconds: 10 livenessProbe: