From 5237a1c0f88879fee4b213fb573ddb78cc2cc6ae Mon Sep 17 00:00:00 2001
From: Dominik Hebeler <dominik@suma-ev.de>
Date: Thu, 12 Aug 2021 15:03:42 +0200
Subject: [PATCH] saving whole public dir

---
 chart/templates/deployment.yaml | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/chart/templates/deployment.yaml b/chart/templates/deployment.yaml
index 20d0466..f221af3 100644
--- a/chart/templates/deployment.yaml
+++ b/chart/templates/deployment.yaml
@@ -61,7 +61,7 @@ spec:
         emptyDir: {}
       - name: vendor
         emptyDir: {}
-      - name: css
+      - name: public
         emptyDir: {}
       - name: packages
         persistentVolumeClaim:
@@ -70,12 +70,12 @@ spec:
       - name: {{ .Chart.Name }}-nodejs
         image: {{ template "imagename" . }}
         imagePullPolicy: {{ .Values.image.pullPolicy }}
-        command: ['sh', '-c', 'npm i --cache .npm --prefer-offline --no-audit --progress=false && npm run prod']
+        command: ['sh', '-c', 'npm i --cache .npm --prefer-offline --no-audit --progress=false && npm run prod && cp -a ./node_modules/. && cp -a ./public/. /public/']
         volumeMounts:
         - mountPath: /html/node_modules
           name: node-modules
-        - mountPath: /html/public/css
-          name: css
+        - mountPath: /public
+          name: public
         - mountPath: /html/.npm
           name: packages
           subPath: .npm
@@ -109,8 +109,8 @@ spec:
           name: node-modules
         - mountPath: /html/vendor
           name: vendor
-        - mountPath: /html/public/css
-          name: css
+        - mountPath: /html/public
+          name: public
 {{- if .Values.lifecycle }}
         lifecycle:
 {{ toYaml .Values.lifecycle | indent 10 }}
@@ -149,8 +149,8 @@ spec:
           name: node-modules
         - mountPath: /html/vendor
           name: vendor
-        - mountPath: /html/public/css
-          name: css
+        - mountPath: /html/public
+          name: public
         ports:
         - name: "{{ .Values.service.name }}"
           containerPort: {{ .Values.service.internalPort }}
@@ -197,8 +197,8 @@ spec:
           name: node-modules
         - mountPath: /html/vendor
           name: vendor
-        - mountPath: /html/public/css
-          name: css
+        - mountPath: /html/public
+          name: public
         livenessProbe:
           exec:
             command:
-- 
GitLab