From b1aca1150908fbc440e99eed778b2eefc80213cd Mon Sep 17 00:00:00 2001 From: Frederic Gurr Date: Fri, 9 Aug 2024 12:49:25 +0200 Subject: [PATCH] Adjust service selector to only select the website pods --- charts/openvsx/templates/deployment.yaml | 1 + charts/openvsx/templates/service.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/charts/openvsx/templates/deployment.yaml b/charts/openvsx/templates/deployment.yaml index 8643898b..be8a51e0 100644 --- a/charts/openvsx/templates/deployment.yaml +++ b/charts/openvsx/templates/deployment.yaml @@ -4,6 +4,7 @@ metadata: labels: app: {{ .Values.name }} environment: {{ .Values.environment }} + type: website name: {{ .Values.name }}-{{ .Values.environment }} namespace: {{ .Values.namespace }} spec: diff --git a/charts/openvsx/templates/service.yaml b/charts/openvsx/templates/service.yaml index f1086150..68ebaba6 100644 --- a/charts/openvsx/templates/service.yaml +++ b/charts/openvsx/templates/service.yaml @@ -16,3 +16,4 @@ spec: selector: app: {{ .Values.name }} environment: {{ .Values.environment }} + type: website