Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/seerr-chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kubeVersion: '>=1.23.0-0'
name: seerr-chart
description: Seerr helm chart for Kubernetes
type: application
version: 3.3.0
version: 3.3.1
# renovate: image=ghcr.io/seerr-team/seerr
appVersion: 'v3.1.0'
maintainers:
Expand Down
6 changes: 3 additions & 3 deletions charts/seerr-chart/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 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

Expand Down Expand Up @@ -73,8 +73,8 @@ If `replicaCount` value was used - remove it. Helm update should work fine after
| podLabels | object | `{}` | |
| podSecurityContext.fsGroup | int | `1000` | |
| podSecurityContext.fsGroupChangePolicy | string | `"OnRootMismatch"` | |
| probes.livenessProbe | object | `{}` | Configure liveness probe |
| probes.readinessProbe | object | `{}` | Configure readiness probe |
| probes.livenessProbe | object | `{"initialDelaySeconds":20,"periodSeconds":15,"timeoutSeconds":3}` | Configure liveness probe |
| probes.readinessProbe | object | `{"initialDelaySeconds":60,"periodSeconds":15,"timeoutSeconds":3}` | Configure readiness probe |
| probes.startupProbe | string | `nil` | Configure startup probe |
| resources | object | `{}` | |
| route.main.additionalRules | list | `[]` | |
Expand Down
4 changes: 2 additions & 2 deletions charts/seerr-chart/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ spec:
protocol: TCP
livenessProbe:
httpGet:
path: /
path: /api/v1/status
port: http
{{- if .Values.probes.livenessProbe.initialDelaySeconds }}
initialDelaySeconds: {{ .Values.probes.livenessProbe.initialDelaySeconds }}
Expand All @@ -63,7 +63,7 @@ spec:
{{- end }}
readinessProbe:
httpGet:
path: /
path: /api/v1/status
port: http
{{- if .Values.probes.readinessProbe.initialDelaySeconds }}
initialDelaySeconds: {{ .Values.probes.readinessProbe.initialDelaySeconds }}
Expand Down
24 changes: 12 additions & 12 deletions charts/seerr-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ fullnameOverride: ''
# Liveness / Readiness / Startup Probes
probes:
# -- Configure liveness probe
livenessProbe: {}
# initialDelaySeconds: 60
# periodSeconds: 30
# timeoutSeconds: 5
# successThreshold: 1
# failureThreshold: 5
livenessProbe:
initialDelaySeconds: 20
periodSeconds: 15
timeoutSeconds: 3
# successThreshold: 1
# failureThreshold: 3
# -- Configure readiness probe
readinessProbe: {}
# initialDelaySeconds: 60
# periodSeconds: 30
# timeoutSeconds: 5
# successThreshold: 1
# failureThreshold: 5
readinessProbe:
initialDelaySeconds: 60
periodSeconds: 15
timeoutSeconds: 3
# successThreshold: 1
# failureThreshold: 3
# -- Configure startup probe
startupProbe: null
# tcpSocket:
Expand Down
Loading