Skip to content

Commit 27b7d5b

Browse files
authored
build: add pm2 folder on helmchat (#390)
1 parent b779313 commit 27b7d5b

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

helm/fuel-explorer/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.1.7
18+
version: 0.1.8
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

helm/fuel-explorer/templates/deployment.yaml

+7-3
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ spec:
4545
volumeMounts:
4646
- mountPath: /home/node/.cache
4747
name: node-cache
48+
- mountPath: /home/node/.pm2
49+
name: pm2
4850
- mountPath: /tmp
4951
name: tmp
5052
- mountPath: /app-explorer/dist
@@ -58,14 +60,16 @@ spec:
5860
volumes:
5961
- name: node-cache
6062
emptyDir: {}
63+
- name: pm2
64+
emptyDir: {}
6165
- name: tmp
6266
emptyDir: {}
6367
- name: dist
64-
emptyDir: { }
68+
emptyDir: {}
6569
- name: graphql
66-
emptyDir: { }
70+
emptyDir: {}
6771
- name: node_modules
68-
emptyDir: { }
72+
emptyDir: {}
6973
{{- with .Values.nodeSelector }}
7074
nodeSelector:
7175
{{- toYaml . | nindent 8 }}

0 commit comments

Comments
 (0)