From cf77bb723ebd97f910fc3fe6df7efe5dccbc79f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ana=C3=ABl=20LATASSA?= Date: Mon, 3 Mar 2025 12:14:05 +0100 Subject: [PATCH] chore(#89): allow specifying pod port closes #89 --- helm/templates/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/templates/deployment.yaml b/helm/templates/deployment.yaml index f3be32a..2e65513 100644 --- a/helm/templates/deployment.yaml +++ b/helm/templates/deployment.yaml @@ -49,11 +49,11 @@ spec: {{- end }} ports: - name: http - containerPort: 80 + containerPort: {{ .Values.service.port }} protocol: TCP args: - --address - - 0.0.0.0:80 + - "0.0.0.0:{{ .Values.service.port }}" {{- if .Values.persistence.artifactory.enabled }} - --artifactory - {{ .Values.persistence.artifactory.uri }}