Skip to content

Commit

Permalink
Merge branch 'master' into add-jellyfin
Browse files Browse the repository at this point in the history
  • Loading branch information
kubealex authored Jan 3, 2024
2 parents 896e475 + 89862e1 commit de26d9a
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 11 deletions.
4 changes: 2 additions & 2 deletions helm-charts/k8s-mediaserver/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
appVersion: 0.9.1
appVersion: 0.9.2
description: A Helm chart for Kubernetes mediaserver
name: k8s-mediaserver
type: application
version: 0.9.1
version: 0.9.2
5 changes: 2 additions & 3 deletions helm-charts/k8s-mediaserver/templates/jackett-resources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,9 @@ spec:
image: "{{ .Values.jackett.container.image }}:{{ .Values.jackett.container.tag | default .Values.general.image_tag }}"
imagePullPolicy: Always
readinessProbe:
httpGet:
tcpSocket:
port: {{ .Values.jackett.container.port }}
path: /{{ .Values.radarr.ingress.path }}/UI/Dashboard
initialDelaySeconds: 5
initialDelaySeconds: 15
periodSeconds: 10
ports:
- name: jackett-port
Expand Down
1 change: 1 addition & 0 deletions helm-charts/k8s-mediaserver/templates/plex-resources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ spec:
path: "/"
initialDelaySeconds: 20
periodSeconds: 15
timeoutSeconds: 20
ports:
- name: plex-port
containerPort: {{ .Values.plex.container.port }}
Expand Down
3 changes: 2 additions & 1 deletion helm-charts/k8s-mediaserver/templates/prowlarr-resources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,11 @@ spec:
imagePullPolicy: Always
readinessProbe:
httpGet:
path: "/{{ .Values.prowlarr.ingress.path }}/ping"
path: "{{ .Values.prowlarr.ingress.path }}/ping"
port: {{ .Values.prowlarr.container.port }}
initialDelaySeconds: 10
periodSeconds: 20
timeoutSeconds: 20
ports:
- name: prowlarr-port
containerPort: {{ .Values.prowlarr.container.port }}
Expand Down
3 changes: 2 additions & 1 deletion helm-charts/k8s-mediaserver/templates/radarr-resources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,11 @@ spec:
imagePullPolicy: Always
readinessProbe:
httpGet:
path: "/{{ .Values.radarr.ingress.path }}/ping"
path: "{{ .Values.radarr.ingress.path }}/ping"
port: {{ .Values.radarr.container.port }}
initialDelaySeconds: 10
periodSeconds: 20
timeoutSeconds: 20
ports:
- name: radarr-port
containerPort: {{ .Values.radarr.container.port }}
Expand Down
3 changes: 2 additions & 1 deletion helm-charts/k8s-mediaserver/templates/sabnzbd-resources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -378,10 +378,11 @@ spec:
imagePullPolicy: Always
readinessProbe:
httpGet:
path: /{{ .Values.sabnzbd.ingress.path }}/wizard/
path: "{{ .Values.sabnzbd.ingress.path }}/wizard/"
port: {{ .Values.sabnzbd.container.port.http }}
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 20
ports:
- name: sabnzbd-http
containerPort: {{ .Values.sabnzbd.container.port.http }}
Expand Down
3 changes: 2 additions & 1 deletion helm-charts/k8s-mediaserver/templates/sonarr-resources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,11 @@ spec:
imagePullPolicy: Always
readinessProbe:
httpGet:
path: "/{{ .Values.sonarr.ingress.path }}/ping"
path: "{{ .Values.sonarr.ingress.path }}/ping"
port: {{ .Values.sonarr.container.port }}
initialDelaySeconds: 10
periodSeconds: 20
timeoutSeconds: 20
ports:
- name: sonarr-port
containerPort: {{ .Values.sonarr.container.port }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,11 @@ spec:
imagePullPolicy: Always
readinessProbe:
httpGet:
path: /{{ .Values.transmission.ingress.path }}/
path: "{{ .Values.transmission.ingress.path }}/"
port: {{ .Values.transmission.container.port.utp }}
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 20
ports:
- name: trans-port
containerPort: {{ .Values.transmission.container.port.utp }}
Expand Down
2 changes: 1 addition & 1 deletion k8s-mediaserver-operator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ spec:
- --metrics-bind-address=127.0.0.1:8080
- --leader-elect
- --leader-election-id=k8s-mediaserver-operator
image: quay.io/kubealex/k8s-mediaserver-operator:v0.9.1
image: quay.io/kubealex/k8s-mediaserver-operator:v0.9.2
livenessProbe:
httpGet:
path: /healthz
Expand Down

0 comments on commit de26d9a

Please sign in to comment.