Skip to content

Commit

Permalink
fix: bazarr liveness probe & qbittorrent liveness probes (#23)
Browse files Browse the repository at this point in the history
Signed-off-by: Ludovic Ortega <[email protected]>
  • Loading branch information
M0NsTeRRR authored Apr 12, 2024
1 parent 43f67d9 commit 40833e0
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 17 deletions.
2 changes: 1 addition & 1 deletion charts/bazarr/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kubeVersion: ">=1.23.0-0"
name: bazarr
description: bazarr helm chart for Kubernetes
type: application
version: 0.2.4
version: 0.2.5
# image: ghcr.io/onedr0p/bazarr
appVersion: "1.4.2"
maintainers:
Expand Down
2 changes: 1 addition & 1 deletion charts/bazarr/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# bazarr

![Version: 0.2.4](https://img.shields.io/badge/Version-0.2.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.4.2](https://img.shields.io/badge/AppVersion-1.4.2-informational?style=flat-square)
![Version: 0.2.5](https://img.shields.io/badge/Version-0.2.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.4.2](https://img.shields.io/badge/AppVersion-1.4.2-informational?style=flat-square)

bazarr helm chart for Kubernetes

Expand Down
12 changes: 8 additions & 4 deletions charts/bazarr/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,18 @@ spec:
httpGet:
path: /
port: http
initialDelaySeconds: 120
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
readinessProbe:
httpGet:
path: /
port: http
initialDelaySeconds: 60
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
initialDelaySeconds: 120
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- with .Values.extraEnv }}
Expand Down
2 changes: 1 addition & 1 deletion charts/qbittorrent/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kubeVersion: ">=1.23.0-0"
name: qbittorrent
description: qbittorrent helm chart for Kubernetes
type: application
version: 0.3.4
version: 0.3.5
# image: ghcr.io/onedr0p/qbittorrent
appVersion: "4.6.4"
maintainers:
Expand Down
2 changes: 1 addition & 1 deletion charts/qbittorrent/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# qbittorrent

![Version: 0.3.4](https://img.shields.io/badge/Version-0.3.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.6.4](https://img.shields.io/badge/AppVersion-4.6.4-informational?style=flat-square)
![Version: 0.3.5](https://img.shields.io/badge/Version-0.3.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.6.4](https://img.shields.io/badge/AppVersion-4.6.4-informational?style=flat-square)

qbittorrent helm chart for Kubernetes

Expand Down
10 changes: 1 addition & 9 deletions charts/qbittorrent/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,22 +84,14 @@ spec:
imagePullPolicy: {{ .Values.gluetun.image.pullPolicy }}
ports:
- name: http
containerPort: 8888
containerPort: {{ $.Values.service.web.port }}
protocol: TCP
- name: shadowsocks-tcp
containerPort: 8388
protocol: TCP
- name: shadowsocks-udp
containerPort: 8388
protocol: UDP
livenessProbe:
httpGet:
path: /api/v2/app/version
port: http
readinessProbe:
httpGet:
path: /api/v2/app/version
port: http
resources:
{{- toYaml .Values.gluetun.resources | nindent 12 }}
{{- with .Values.gluetun.extraEnv }}
Expand Down

0 comments on commit 40833e0

Please sign in to comment.