From 33bf5df246e46a13290ee8bd00419cf5f86c2068 Mon Sep 17 00:00:00 2001 From: Antonia Gaete Date: Mon, 13 Apr 2026 12:38:19 -0400 Subject: [PATCH 1/3] Add deployment annotation for Backstage ingestion Signed-off-by: Antonia Gaete --- charts/lfx-v2-query-service/templates/deployment.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/charts/lfx-v2-query-service/templates/deployment.yaml b/charts/lfx-v2-query-service/templates/deployment.yaml index 77f0ae7..93f04fc 100644 --- a/charts/lfx-v2-query-service/templates/deployment.yaml +++ b/charts/lfx-v2-query-service/templates/deployment.yaml @@ -6,6 +6,8 @@ kind: Deployment metadata: name: lfx-v2-query-service namespace: {{ .Release.Namespace }} + labels: + app.kubernetes.io/name: {{ .Chart.Name }} spec: replicas: {{ .Values.replicaCount }} selector: From dfbf84a14ec2a33889cc1aa527a4645111fe00df Mon Sep 17 00:00:00 2001 From: Antonia Gaete Date: Mon, 13 Apr 2026 14:03:33 -0400 Subject: [PATCH 2/3] add label to spec Signed-off-by: Antonia Gaete --- charts/lfx-v2-query-service/templates/deployment.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/charts/lfx-v2-query-service/templates/deployment.yaml b/charts/lfx-v2-query-service/templates/deployment.yaml index 93f04fc..e16e297 100644 --- a/charts/lfx-v2-query-service/templates/deployment.yaml +++ b/charts/lfx-v2-query-service/templates/deployment.yaml @@ -13,6 +13,7 @@ spec: selector: matchLabels: app: lfx-v2-query-service + app.kubernetes.io/name: {{ .Chart.Name }} template: metadata: {{- with .Values.podAnnotations }} @@ -21,6 +22,7 @@ spec: {{- end }} labels: app: lfx-v2-query-service + app.kubernetes.io/name: {{ .Chart.Name }} {{- with .Values.podLabels }} {{- toYaml . | nindent 8 }} {{- end }} From d0e1f0af28550219632c3aa506e7fc3d83985ad2 Mon Sep 17 00:00:00 2001 From: Antonia Gaete Date: Mon, 13 Apr 2026 14:50:44 -0400 Subject: [PATCH 3/3] remove label from spec.selector Signed-off-by: Antonia Gaete --- charts/lfx-v2-query-service/templates/deployment.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/charts/lfx-v2-query-service/templates/deployment.yaml b/charts/lfx-v2-query-service/templates/deployment.yaml index e16e297..b273f43 100644 --- a/charts/lfx-v2-query-service/templates/deployment.yaml +++ b/charts/lfx-v2-query-service/templates/deployment.yaml @@ -13,7 +13,6 @@ spec: selector: matchLabels: app: lfx-v2-query-service - app.kubernetes.io/name: {{ .Chart.Name }} template: metadata: {{- with .Values.podAnnotations }}