From 1bb36f813a3053a1bb6a0d6c19cb5ff90a07b887 Mon Sep 17 00:00:00 2001 From: Nick Adam Date: Thu, 15 Jan 2026 15:06:12 +0100 Subject: [PATCH] fix: pass ingress annotations as string block for seaweedfs chart --- infrastructure/seaweedfs/values.yaml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/infrastructure/seaweedfs/values.yaml b/infrastructure/seaweedfs/values.yaml index 40e464b..7ec7344 100644 --- a/infrastructure/seaweedfs/values.yaml +++ b/infrastructure/seaweedfs/values.yaml @@ -2,7 +2,7 @@ seaweedfs: image: registry: docker.io repository: chrislusf/seaweedfs - tag: "3.59" # String! + tag: "3.59" volume: replicas: 3 @@ -10,18 +10,19 @@ seaweedfs: enabled: true size: 10Gi storageClass: longhorn - # resources: {} # Lassen wir erstmal weg, um den Fehler zu isolieren + resources: {} master: replicas: 3 - # resources: {} + resources: {} filer: replicas: 2 ingress: enabled: true className: traefik - annotations: + # Achtung: Chart erwartet Annotations als String! + annotations: | cert-manager.io/cluster-issuer: letsencrypt-prod hosts: - host: filer.seaweedfs.apps.internal.k3s.stabify.de @@ -39,7 +40,8 @@ seaweedfs: ingress: enabled: true className: traefik - annotations: + # Achtung: Chart erwartet Annotations als String! + annotations: | cert-manager.io/cluster-issuer: letsencrypt-prod hosts: - host: s3.apps.internal.k3s.stabify.de