Skip to content

Commit 4041fc6

Browse files
author
Liviu Damian
authored
fix: Helm - add writable emptydir volumes (#57)
1 parent a7f2266 commit 4041fc6

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-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.0
18+
version: 0.1.1
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

+6
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,14 @@ spec:
4040
- name: http
4141
containerPort: {{ .Values.service.port }}
4242
protocol: TCP
43+
volumeMounts:
44+
- mountPath: /home/node/.cache
45+
name: node-cache
4346
resources:
4447
{{- toYaml .Values.resources | nindent 12 }}
48+
volumes:
49+
- name: node-cache
50+
emptyDir: {}
4551
{{- with .Values.nodeSelector }}
4652
nodeSelector:
4753
{{- toYaml . | nindent 8 }}

0 commit comments

Comments
 (0)