add Jellyfin

This commit is contained in:
Márcio Fernandes
2026-07-11 21:20:31 +00:00
parent 591afcc617
commit 63e9fb40a1
3 changed files with 21 additions and 1 deletions
+1
View File
@@ -9,6 +9,7 @@
"source=${localWorkspaceFolder}/../lms,target=/workspaces/lms,type=bind",
"source=${localWorkspaceFolder}/../homeAssistant,target=/workspaces/homeAssistant,type=bind",
"source=${localWorkspaceFolder}/../mosquitto,target=/workspaces/mosquitto,type=bind",
"source=${localWorkspaceFolder}/../myLimbo.Jellyfin,target=/workspaces/myLimbo.Jellyfin,type=bind",
"source=${localWorkspaceFolder}/../kb,target=/workspaces/kb,type=bind",
"source=${localWorkspaceFolder}/../pi.bluetooth.speaker,target=/workspaces/pi.bluetooth.speaker,type=bind",
"source=${localWorkspaceFolder}/.env.d/kube,target=/home/vscode/.kube,type=bind",
+1 -1
View File
@@ -5,7 +5,7 @@
``` bash
kubectl annotate secret casa-limbosolutions-com-tls \
-n casa-limbosolutions-com \
replicator.v1.mittwald.de/replicate-to="home-assistant,node-red,lyrionmusicserver"
replicator.v1.mittwald.de/replicate-to="home-assistant,node-red,lyrionmusicserver,jellyfin" --overwrite
```
``` bash
+19
View File
@@ -14,6 +14,10 @@
{
"path": "../mosquitto"
},
{
"name": "Jellyfin",
"path": "../myLimbo.Jellyfin"
},
{
"name": "kb",
"path": "../kb"
@@ -95,7 +99,22 @@
"focus": false,
"panel": "shared"
}
},
{
"label": "Kustomize - Build - Selected File",
"type": "shell",
"command": "bash -c '[[ \"$(basename ${file})\" == \"kustomization.yaml\" ]] && kubectl kustomize ${fileDirname} || echo \"❌ invalid kustomization.yaml\"'",
"problemMatcher": [],
"group": "build"
},
{
"label": "Kustomize - Build & Deploy - Selected File",
"type": "shell",
"command": "bash -c '[[ \"$(basename ${file})\" == \"kustomization.yaml\" ]] && kubectl kustomize ${fileDirname} | kubectl apply -f - || echo \"❌ invalid kustomization.yaml\"'",
"problemMatcher": [],
"group": "build"
}
]
}
}