From ee02916ce5061e1dfa2727bcaa34891c43603745 Mon Sep 17 00:00:00 2001 From: htiryaki-oe24 <67585539+htiryaki-oe24@users.noreply.github.com> Date: Thu, 19 Feb 2026 23:19:00 +0100 Subject: [PATCH] Fixes minor chart issues #629 --- deploy/helm/templates/deployment.yaml | 3 +++ deploy/helm/templates/ingress.yaml | 2 +- deploy/helm/templates/statefulset.yaml | 3 +++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/deploy/helm/templates/deployment.yaml b/deploy/helm/templates/deployment.yaml index 8d2db04..b3eb17c 100644 --- a/deploy/helm/templates/deployment.yaml +++ b/deploy/helm/templates/deployment.yaml @@ -8,6 +8,9 @@ spec: {{- with .Values.revisionHistoryLimit }} revisionHistoryLimit: {{ . }} {{- end }} + {{- with .Values.replicas }} + replicas: {{ . }} + {{- end }} {{- with .Values.strategy }} strategy: {{- toYaml . | nindent 4 }} {{- end }} diff --git a/deploy/helm/templates/ingress.yaml b/deploy/helm/templates/ingress.yaml index be0370e..4022824 100644 --- a/deploy/helm/templates/ingress.yaml +++ b/deploy/helm/templates/ingress.yaml @@ -15,7 +15,7 @@ spec: http: paths: - path: {{ default "/" (urlParse (tpl .Values.config.web.external_url .)).path }} - pathType: {{ default "ImplementationSpecific" .pathType }} + pathType: {{ default "ImplementationSpecific" .Values.ingress.pathType }} backend: service: name: {{ include "wg-portal.fullname" . }} diff --git a/deploy/helm/templates/statefulset.yaml b/deploy/helm/templates/statefulset.yaml index e25870e..33aa6b3 100644 --- a/deploy/helm/templates/statefulset.yaml +++ b/deploy/helm/templates/statefulset.yaml @@ -8,6 +8,9 @@ spec: {{- with .Values.revisionHistoryLimit }} revisionHistoryLimit: {{ . }} {{- end }} + {{- with .Values.replicas }} + replicas: {{ . }} + {{- end }} {{- with .Values.strategy }} updateStrategy: {{- toYaml . | nindent 4 }} {{- end }}