diff --git a/helm/fuel-explorer/Chart.yaml b/helm/fuel-explorer/Chart.yaml index 5e59f35d2..9e5786815 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.6 +version: 0.1.7 # 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 3984ff182..5aa2b9518 100644 --- a/helm/fuel-explorer/templates/deployment.yaml +++ b/helm/fuel-explorer/templates/deployment.yaml @@ -47,6 +47,12 @@ spec: name: node-cache - mountPath: /tmp name: tmp + - mountPath: /app-explorer/dist + name: dist + - mountPath: /app-explorer/src/graphql + name: graphql + - mountPath: /app-explorer/node_modules + name: node_modules resources: {{- toYaml .Values.resources | nindent 12 }} volumes: @@ -54,6 +60,12 @@ spec: emptyDir: {} - name: tmp emptyDir: {} + - name: dist + emptyDir: { } + - name: graphql + emptyDir: { } + - name: node_modules + emptyDir: { } {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }}