fix: helm chart liveness and readiness probe (#2755)
This commit is contained in:
@@ -3,7 +3,7 @@ kubeVersion: '>=1.23.0-0'
|
|||||||
name: seerr-chart
|
name: seerr-chart
|
||||||
description: Seerr helm chart for Kubernetes
|
description: Seerr helm chart for Kubernetes
|
||||||
type: application
|
type: application
|
||||||
version: 3.3.0
|
version: 3.3.1
|
||||||
# renovate: image=ghcr.io/seerr-team/seerr
|
# renovate: image=ghcr.io/seerr-team/seerr
|
||||||
appVersion: 'v3.1.0'
|
appVersion: 'v3.1.0'
|
||||||
maintainers:
|
maintainers:
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# seerr-chart
|
# seerr-chart
|
||||||
|
|
||||||
  
|
  
|
||||||
|
|
||||||
Seerr helm chart for Kubernetes
|
Seerr helm chart for Kubernetes
|
||||||
|
|
||||||
@@ -73,8 +73,8 @@ If `replicaCount` value was used - remove it. Helm update should work fine after
|
|||||||
| podLabels | object | `{}` | |
|
| podLabels | object | `{}` | |
|
||||||
| podSecurityContext.fsGroup | int | `1000` | |
|
| podSecurityContext.fsGroup | int | `1000` | |
|
||||||
| podSecurityContext.fsGroupChangePolicy | string | `"OnRootMismatch"` | |
|
| podSecurityContext.fsGroupChangePolicy | string | `"OnRootMismatch"` | |
|
||||||
| probes.livenessProbe | object | `{}` | Configure liveness probe |
|
| probes.livenessProbe | object | `{"initialDelaySeconds":20,"periodSeconds":15,"timeoutSeconds":3}` | Configure liveness probe |
|
||||||
| probes.readinessProbe | object | `{}` | Configure readiness probe |
|
| probes.readinessProbe | object | `{"initialDelaySeconds":60,"periodSeconds":15,"timeoutSeconds":3}` | Configure readiness probe |
|
||||||
| probes.startupProbe | string | `nil` | Configure startup probe |
|
| probes.startupProbe | string | `nil` | Configure startup probe |
|
||||||
| resources | object | `{}` | |
|
| resources | object | `{}` | |
|
||||||
| route.main.additionalRules | list | `[]` | |
|
| route.main.additionalRules | list | `[]` | |
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ spec:
|
|||||||
protocol: TCP
|
protocol: TCP
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /
|
path: /api/v1/status
|
||||||
port: http
|
port: http
|
||||||
{{- if .Values.probes.livenessProbe.initialDelaySeconds }}
|
{{- if .Values.probes.livenessProbe.initialDelaySeconds }}
|
||||||
initialDelaySeconds: {{ .Values.probes.livenessProbe.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.livenessProbe.initialDelaySeconds }}
|
||||||
@@ -63,7 +63,7 @@ spec:
|
|||||||
{{- end }}
|
{{- end }}
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /
|
path: /api/v1/status
|
||||||
port: http
|
port: http
|
||||||
{{- if .Values.probes.readinessProbe.initialDelaySeconds }}
|
{{- if .Values.probes.readinessProbe.initialDelaySeconds }}
|
||||||
initialDelaySeconds: {{ .Values.probes.readinessProbe.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.readinessProbe.initialDelaySeconds }}
|
||||||
|
|||||||
@@ -13,19 +13,19 @@ fullnameOverride: ''
|
|||||||
# Liveness / Readiness / Startup Probes
|
# Liveness / Readiness / Startup Probes
|
||||||
probes:
|
probes:
|
||||||
# -- Configure liveness probe
|
# -- Configure liveness probe
|
||||||
livenessProbe: {}
|
livenessProbe:
|
||||||
# initialDelaySeconds: 60
|
initialDelaySeconds: 20
|
||||||
# periodSeconds: 30
|
periodSeconds: 15
|
||||||
# timeoutSeconds: 5
|
timeoutSeconds: 3
|
||||||
# successThreshold: 1
|
# successThreshold: 1
|
||||||
# failureThreshold: 5
|
# failureThreshold: 3
|
||||||
# -- Configure readiness probe
|
# -- Configure readiness probe
|
||||||
readinessProbe: {}
|
readinessProbe:
|
||||||
# initialDelaySeconds: 60
|
initialDelaySeconds: 60
|
||||||
# periodSeconds: 30
|
periodSeconds: 15
|
||||||
# timeoutSeconds: 5
|
timeoutSeconds: 3
|
||||||
# successThreshold: 1
|
# successThreshold: 1
|
||||||
# failureThreshold: 5
|
# failureThreshold: 3
|
||||||
# -- Configure startup probe
|
# -- Configure startup probe
|
||||||
startupProbe: null
|
startupProbe: null
|
||||||
# tcpSocket:
|
# tcpSocket:
|
||||||
|
|||||||
Reference in New Issue
Block a user