diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 8fcab08..21c3fb7 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -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", diff --git a/casa-limbosolutions-com/README.md b/casa-limbosolutions-com/README.md index 99a93f1..d873b4b 100644 --- a/casa-limbosolutions-com/README.md +++ b/casa-limbosolutions-com/README.md @@ -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 diff --git a/casa.full-stack.code-workspace b/casa.full-stack.code-workspace index 9aa937b..a5f466e 100644 --- a/casa.full-stack.code-workspace +++ b/casa.full-stack.code-workspace @@ -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" } + ] } } \ No newline at end of file