Skip to content

Commit 18e9ad3

Browse files
Merge pull request #125 from CodeForPhilly/fix/ensure-pac-api-env-vars
Fix/ensure pac api env vars
2 parents b93687a + 35d6923 commit 18e9ad3

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

helm-chart/templates/configmap.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
apiVersion: v1
2+
kind: ConfigMap
3+
metadata:
4+
name: app-config
5+
labels:
6+
{{- include "helm-chart.labels" . | nindent 4 }}
7+
data:
8+
NODE_OPTIONS: "--openssl-legacy-provider --max-old-space-size=768"

helm-chart/values.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ app:
99
repository: ghcr.io/codeforphilly/pa-wildflower-selector/app
1010
pullPolicy: Always
1111
# Overrides the image tag whose default is the chart appVersion.
12-
tag: "2.0.2"
12+
tag: "2.0.3"
13+
env:
14+
- name: NODE_OPTIONS
15+
value: "--openssl-legacy-provider --max-old-space-size=768"
1316

1417
db:
1518
name: pa-wildflower-selector

0 commit comments

Comments
 (0)