From 313d8141dbd0a9746f56de61622017518f011e0e Mon Sep 17 00:00:00 2001 From: Andreas Klos Date: Thu, 27 Nov 2025 12:58:03 +0100 Subject: [PATCH 1/2] chore: Add annotations field to service configuration --- infrastructure/rag/values.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/infrastructure/rag/values.yaml b/infrastructure/rag/values.yaml index 8c759336..c8d95a29 100644 --- a/infrastructure/rag/values.yaml +++ b/infrastructure/rag/values.yaml @@ -131,6 +131,7 @@ backend: service: type: ClusterIP port: 8080 + annotations: {} pythonPathEnv: PYTHONPATH: src From 70caa23d79b61165782c4ab49f7cb663c1cf5ee9 Mon Sep 17 00:00:00 2001 From: Andreas Klos Date: Thu, 27 Nov 2025 13:00:50 +0100 Subject: [PATCH 2/2] chore: Add annotations to backend service configuration --- infrastructure/rag/templates/backend/service.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/infrastructure/rag/templates/backend/service.yaml b/infrastructure/rag/templates/backend/service.yaml index 847b5c7c..4c98e05e 100644 --- a/infrastructure/rag/templates/backend/service.yaml +++ b/infrastructure/rag/templates/backend/service.yaml @@ -2,6 +2,10 @@ apiVersion: v1 kind: Service metadata: name: {{ .Values.backend.name }} + {{- with .Values.backend.service.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} spec: type: {{ .Values.backend.service.type }} ports: