Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updating jellyfin and samba and adding new ports for jellyfin #39

Merged
merged 1 commit into from
Jul 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading