Browse Source

Merge branch 'hotfix/v1.2.1'

master v1.2.1
LecygneNoir 2 years ago
parent
commit
e4470c3f48
3 changed files with 11 additions and 5 deletions
  1. +6
    -0
      CHANGELOG.md
  2. +1
    -1
      Chart.yaml
  3. +4
    -4
      templates/deployment.yaml

+ 6
- 0
CHANGELOG.md View File

@ -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

+ 1
- 1
Chart.yaml View File

@ -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

+ 4
- 4
templates/deployment.yaml View File

@ -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:

Loading…
Cancel
Save