fix: helm chart liveness and readiness probe (#2755)

This commit is contained in:
Jyasapara
2026-03-31 14:49:14 +02:00
committed by GitHub
parent 05ad60c21a
commit 4434c45ea7
4 changed files with 18 additions and 18 deletions

View File

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

View File

@@ -1,6 +1,6 @@
# seerr-chart # seerr-chart
![Version: 3.3.0](https://img.shields.io/badge/Version-3.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v3.1.0](https://img.shields.io/badge/AppVersion-v3.1.0-informational?style=flat-square) ![Version: 3.3.1](https://img.shields.io/badge/Version-3.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v3.1.0](https://img.shields.io/badge/AppVersion-v3.1.0-informational?style=flat-square)
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 | `[]` | |

View File

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

View File

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