Skip to content

Commit 86acc41

Browse files
authored
fix(helm): healthcheck endpoint to avoid github rate limit (#2837)
Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr>
1 parent e71f9eb commit 86acc41

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

charts/seerr-chart/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kubeVersion: '>=1.23.0-0'
33
name: seerr-chart
44
description: Seerr helm chart for Kubernetes
55
type: application
6-
version: 3.4.0
6+
version: 3.4.1
77
# renovate: image=ghcr.io/seerr-team/seerr
88
appVersion: 'v3.1.0'
99
maintainers:

charts/seerr-chart/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# seerr-chart
22

3-
![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)
3+
![Version: 3.4.1](https://img.shields.io/badge/Version-3.4.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)
44

55
Seerr helm chart for Kubernetes
66

charts/seerr-chart/templates/statefulset.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ spec:
4444
protocol: TCP
4545
livenessProbe:
4646
httpGet:
47-
path: /api/v1/status
47+
path: /api/v1/settings/public
4848
port: http
4949
{{- if .Values.probes.livenessProbe.initialDelaySeconds }}
5050
initialDelaySeconds: {{ .Values.probes.livenessProbe.initialDelaySeconds }}
@@ -63,7 +63,7 @@ spec:
6363
{{- end }}
6464
readinessProbe:
6565
httpGet:
66-
path: /api/v1/status
66+
path: /api/v1/settings/public
6767
port: http
6868
{{- if .Values.probes.readinessProbe.initialDelaySeconds }}
6969
initialDelaySeconds: {{ .Values.probes.readinessProbe.initialDelaySeconds }}

docs/extending-seerr/reverse-proxy.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ This is a third-party documentation maintained by the community. We can't provid
293293
log global
294294
option httplog
295295
http-response set-header Strict-Transport-Security max-age=15552000
296-
option httpchk GET /api/v1/status
296+
option httpchk GET /api/v1/settings/public
297297
timeout connect 30000
298298
timeout server 30000
299299
retries 3

docs/getting-started/docker.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ docker run -d \
6161
-p 5055:5055 \
6262
-v /path/to/appdata/config:/app/config \
6363
--restart unless-stopped \
64-
--health-cmd "wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1" \
64+
--health-cmd "wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/settings/public || exit 1" \
6565
--health-start-period 20s \
6666
--health-timeout 3s \
6767
--health-interval 15s \
@@ -116,7 +116,7 @@ services:
116116
volumes:
117117
- /path/to/appdata/config:/app/config
118118
healthcheck:
119-
test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1
119+
test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/settings/public || exit 1
120120
start_period: 20s
121121
timeout: 3s
122122
interval: 15s
@@ -179,7 +179,7 @@ docker run -d `
179179
-p 5055:5055 `
180180
-v seerr-data:/app/config `
181181
--restart unless-stopped `
182-
--health-cmd "wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1" `
182+
--health-cmd "wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/settings/public || exit 1" `
183183
--health-start-period 20s `
184184
--health-timeout 3s `
185185
--health-interval 15s `
@@ -217,7 +217,7 @@ docker run -d ^
217217
-p 5055:5055 ^
218218
-v seerr-data:/app/config ^
219219
--restart unless-stopped ^
220-
--health-cmd "wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1" ^
220+
--health-cmd "wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/settings/public || exit 1" ^
221221
--health-start-period 20s ^
222222
--health-timeout 3s ^
223223
--health-interval 15s ^
@@ -260,7 +260,7 @@ services:
260260
volumes:
261261
- seerr-data:/app/config
262262
healthcheck:
263-
test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1
263+
test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/settings/public || exit 1
264264
start_period: 20s
265265
timeout: 3s
266266
interval: 15s

docs/migration-guide.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Summary of changes :
8282
volumes:
8383
- /path/to/appdata/config:/app/config
8484
healthcheck:
85-
test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1
85+
test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/settings/public || exit 1
8686
start_period: 20s
8787
timeout: 3s
8888
interval: 15s
@@ -126,7 +126,7 @@ Summary of changes :
126126
volumes:
127127
- seerr-data:/app/config
128128
healthcheck:
129-
test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1
129+
test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/settings/public || exit 1
130130
start_period: 20s
131131
timeout: 3s
132132
interval: 15s

0 commit comments

Comments
 (0)