From 9a620bae8eb500ae1925213a4ee6daa07addfdf2 Mon Sep 17 00:00:00 2001 From: Alex Manning Date: Mon, 14 Aug 2023 23:13:17 +0100 Subject: [PATCH] Env vars are strings. --- charts/unifi-controller/templates/deployment.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/charts/unifi-controller/templates/deployment.yaml b/charts/unifi-controller/templates/deployment.yaml index a8fd861..338b46e 100644 --- a/charts/unifi-controller/templates/deployment.yaml +++ b/charts/unifi-controller/templates/deployment.yaml @@ -33,15 +33,15 @@ spec: imagePullPolicy: {{ .Values.image.pullPolicy }} env: - name: PUID - value: 1000 + value: "1000" - name: PGID - value: 1000 + value: "1000" - name: TZ - value: Europe/London + value: "Europe/London" - name: MEM_LIMIT - value: 1024 + value: "512" - name: MEM_STARTUP - value: 1024 + value: "512" ports: - name: http containerPort: 8443