Skip to content

Commit b779313

Browse files
author
Liviu Damian
authored
feat: helm - add writable folders (#389)
1 parent 4912245 commit b779313

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
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.6
18+
version: 0.1.7
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

+12
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,25 @@ spec:
4747
name: node-cache
4848
- mountPath: /tmp
4949
name: tmp
50+
- mountPath: /app-explorer/dist
51+
name: dist
52+
- mountPath: /app-explorer/src/graphql
53+
name: graphql
54+
- mountPath: /app-explorer/node_modules
55+
name: node_modules
5056
resources:
5157
{{- toYaml .Values.resources | nindent 12 }}
5258
volumes:
5359
- name: node-cache
5460
emptyDir: {}
5561
- name: tmp
5662
emptyDir: {}
63+
- name: dist
64+
emptyDir: { }
65+
- name: graphql
66+
emptyDir: { }
67+
- name: node_modules
68+
emptyDir: { }
5769
{{- with .Values.nodeSelector }}
5870
nodeSelector:
5971
{{- toYaml . | nindent 8 }}

0 commit comments

Comments
 (0)