diff --git a/helm/fuel-explorer/Chart.yaml b/helm/fuel-explorer/Chart.yaml index 7273a44fe..5e59f35d2 100644 --- a/helm/fuel-explorer/Chart.yaml +++ b/helm/fuel-explorer/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.5 +version: 0.1.6 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/helm/fuel-explorer/templates/deployment.yaml b/helm/fuel-explorer/templates/deployment.yaml index 6081d8d0b..3984ff182 100644 --- a/helm/fuel-explorer/templates/deployment.yaml +++ b/helm/fuel-explorer/templates/deployment.yaml @@ -45,11 +45,15 @@ spec: volumeMounts: - mountPath: /home/node/.cache name: node-cache + - mountPath: /tmp + name: tmp resources: {{- toYaml .Values.resources | nindent 12 }} volumes: - name: node-cache emptyDir: {} + - name: tmp + emptyDir: {} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }}