Commit b779313 Liviu Damian
authored
1 parent 4912245 commit b779313 Copy full SHA for b779313
File tree 2 files changed +13
-1
lines changed
2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 0.1.6
18
+ version : 0.1.7
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change @@ -47,13 +47,25 @@ spec:
47
47
name : node-cache
48
48
- mountPath : /tmp
49
49
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
50
56
resources :
51
57
{{- toYaml .Values.resources | nindent 12 }}
52
58
volumes :
53
59
- name : node-cache
54
60
emptyDir : {}
55
61
- name : tmp
56
62
emptyDir : {}
63
+ - name : dist
64
+ emptyDir : { }
65
+ - name : graphql
66
+ emptyDir : { }
67
+ - name : node_modules
68
+ emptyDir : { }
57
69
{{- with .Values.nodeSelector }}
58
70
nodeSelector :
59
71
{{- toYaml . | nindent 8 }}
You can’t perform that action at this time.
0 commit comments