diff --git a/charts/nebulous-gui/templates/deployment.yaml b/charts/nebulous-gui/templates/deployment.yaml index 714855d..e06499e 100644 --- a/charts/nebulous-gui/templates/deployment.yaml +++ b/charts/nebulous-gui/templates/deployment.yaml @@ -55,10 +55,7 @@ spec: containerPort: 80 protocol: TCP env: - - name: NODE_ENV - value: "{{ .Values.env.NODE_ENV }}" - - name: VITE_API_URL - value: "{{ .Values.env.VITE_API_URL }}" + {{- toYaml .Values.env | nindent 12 }} livenessProbe: httpGet: path: / diff --git a/charts/nebulous-gui/values.yaml b/charts/nebulous-gui/values.yaml index c90cde7..f7f0f46 100644 --- a/charts/nebulous-gui/values.yaml +++ b/charts/nebulous-gui/values.yaml @@ -88,7 +88,4 @@ tolerations: [] affinity: {} -env: - NODE_ENV: "production" - VITE_API_URL: "http://nebulous-gui-controller:3000" - +env: []