Skip to content

Commit

Permalink
updating jellyfin and samba and adding new ports for jellyfin
Browse files Browse the repository at this point in the history
  • Loading branch information
drew-viles authored Jul 21, 2024
1 parent 7e7cf10 commit 0fe1521
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions charts/jellyfin/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: jellyfin
description: Deploys Jellyfin onto Kubernetes
type: application
version: 0.1.1
appVersion: "10.9.4"
version: 0.1.3
appVersion: "10.9.8"
maintainers:
- name: Drew
email: [email protected]
Expand Down
2 changes: 1 addition & 1 deletion charts/jellyfin/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# jellyfin

![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 10.9.4](https://img.shields.io/badge/AppVersion-10.9.4-informational?style=flat-square)
![Version: 0.1.3](https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 10.9.8](https://img.shields.io/badge/AppVersion-10.9.8-informational?style=flat-square)

The Jellyfin helm chart simply exists for deploying the Jellyfin media server onto Kubernetes.

Expand Down
5 changes: 4 additions & 1 deletion charts/jellyfin/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
targetPort: 8096
{{- if eq .Values.service.type "NodePort" }}
nodePort: {{ default "8096" .Values.service.nodePort }}
{{- end }}
protocol: TCP
name: http
selector:
Expand Down
2 changes: 1 addition & 1 deletion charts/jellyfin/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ spec:
value: {{ .Values.config.url }}
ports:
- name: http
containerPort: {{ .Values.service.port }}
containerPort: 8096
protocol: TCP
livenessProbe:
httpGet:
Expand Down
1 change: 1 addition & 0 deletions charts/jellyfin/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ securityContext: {}
service:
type: ClusterIP
port: 8096
# nodePort: 8096

ingress:
enabled: false
Expand Down
4 changes: 2 additions & 2 deletions charts/samba/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: samba
description: Deploys Samba onto Kubernetes
type: application
version: 0.1.0
appVersion: "1.1.0"
version: 0.1.1
appVersion: "1.1.1"
maintainers:
- name: Drew
email: [email protected]
Expand Down
2 changes: 1 addition & 1 deletion charts/samba/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# samba

![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.1.0](https://img.shields.io/badge/AppVersion-1.1.0-informational?style=flat-square)
![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.1.1](https://img.shields.io/badge/AppVersion-1.1.1-informational?style=flat-square)

Samba Helm chart requires a LoadBalancer service to function.
It creates a /shared path that can be accessed using a supplied username and password.
Expand Down

0 comments on commit 0fe1521

Please sign in to comment.