From 97d7bcef605340e3643da05dc12b910bd2ef295c Mon Sep 17 00:00:00 2001 From: chemavx Date: Fri, 22 May 2026 09:58:49 +0000 Subject: [PATCH] fix: disable service env injection to avoid TRILIUM_PORT conflict K8s injects TRILIUM_PORT=tcp://... from the service, but Trilium expects an integer. enableServiceLinks: false prevents the collision. --- trilium/deployment.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/trilium/deployment.yaml b/trilium/deployment.yaml index 3e68aa1..5db5c14 100644 --- a/trilium/deployment.yaml +++ b/trilium/deployment.yaml @@ -13,6 +13,7 @@ spec: labels: app: trilium spec: + enableServiceLinks: false containers: - name: trilium image: zadam/trilium:latest