mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-03 07:49:03 +00:00
[sonarr] Fix liveness and readiness probes on basic auth deployment (#257)
Use tcpSocket instead of httpGet to avoid: HTTP probe failed with statuscode: 401 Signed-off-by: LEI <guillaume.frichet@gmail.com>
This commit is contained in:
parent
3e9298bff5
commit
4c16a658a7
@ -2,7 +2,7 @@ apiVersion: v1
|
|||||||
appVersion: 2.0.0.5344-ls60
|
appVersion: 2.0.0.5344-ls60
|
||||||
description: Sonarr is a television show downloading client
|
description: Sonarr is a television show downloading client
|
||||||
name: sonarr
|
name: sonarr
|
||||||
version: 4.1.0
|
version: 4.1.1
|
||||||
keywords:
|
keywords:
|
||||||
- sonarr
|
- sonarr
|
||||||
- usenet
|
- usenet
|
||||||
|
@ -43,15 +43,13 @@ spec:
|
|||||||
containerPort: 8989
|
containerPort: 8989
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
tcpSocket:
|
||||||
path: /
|
|
||||||
port: http
|
port: http
|
||||||
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
|
||||||
failureThreshold: {{ .Values.probes.liveness.failureThreshold }}
|
failureThreshold: {{ .Values.probes.liveness.failureThreshold }}
|
||||||
timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }}
|
timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }}
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
tcpSocket:
|
||||||
path: /
|
|
||||||
port: http
|
port: http
|
||||||
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
|
||||||
failureThreshold: {{ .Values.probes.readiness.failureThreshold }}
|
failureThreshold: {{ .Values.probes.readiness.failureThreshold }}
|
||||||
|
Loading…
Reference in New Issue
Block a user