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

expose DLNA ports of jellyfin #6

Open
christf opened this issue Sep 1, 2022 · 1 comment · Fixed by #8
Open

expose DLNA ports of jellyfin #6

christf opened this issue Sep 1, 2022 · 1 comment · Fixed by #8

Comments

@christf
Copy link

christf commented Sep 1, 2022

It would be great if the DLNA feature would be enabled as described
https://www.jamesmoriarty.xyz/post/kubernetes-and-dlna/

@christf
Copy link
Author

christf commented Nov 4, 2022

I still cannot see jellyfin, even with the deploymentconfig exposing udp port 1900.
It looks something like this is needed: https://serverfault.com/questions/934581/configuring-kubernetes-service-as-a-upnp-device

adjustments in the service.
I tried with:

@@ -47,6 +47,13 @@ spec:
 {{ if (and (eq .Values.service.type "NodePort") (not (empty .Values.service.nodePort))) }}
       nodePort: {{.Values.service.nodePort}}
 {{ end }}
+        {{ if .Values.enableDLNA }}
+    - name: dlnha
+      port: 1900
+      protocol: UDP
+      targetPort: 1900
+      nodePort: {{.Values.service.nodePort}}
+{{- end }}
   selector:
     app.kubernetes.io/name: {{ include "jellyfin.name" . }}
     app.kubernetes.io/instance: {{ .Release.Name }}

and I can now see other dlna renderers on my lan from jellyfin. In my dlna controller howerver I still cannot see jellyfin so while the above helps already, there is more to be done to solve this.

@brianmcarey brianmcarey reopened this Nov 4, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants