File tree Expand file tree Collapse file tree 4 files changed +27
-1
lines changed
Expand file tree Collapse file tree 4 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 1515 - " .github/workflows/mdbook.yml"
1616 - " index.html"
1717
18+ workflow_run :
19+ workflows : [ 'Release Charts' ]
20+ types : [ completed ]
21+
22+
1823 # Allows you to run this workflow manually from the Actions tab
1924 workflow_dispatch :
2025
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ apiVersion: v2
22name : shoebox-helm
33description : A Helm chart for Kubernetes to deploy Shoebox
44type : application
5- version : 0.0.2
5+ version : 0.0.3
Original file line number Diff line number Diff line change 3737 value : {{ $val | quote }}
3838 {{- end }}
3939 {{- end }}
40+ {{- if .Values.volumeMounts }}
41+ volumeMounts :
42+ {{- toYaml .Values.volumeMounts | default "" | nindent 12 }}
43+ {{- end }}
4044 volumes :
4145 - name : config-volume
4246 configMap :
4347 name : {{ .Chart.Name }}-config
48+ {{- if .Values.volumes }}
49+ {{- toYaml .Values.volumes | default "" | nindent 8 }}
50+ {{- end }}
51+
Original file line number Diff line number Diff line change @@ -26,6 +26,19 @@ ingress:
2626 hosts :
2727 - test.shoebox.default # Placeholder domain
2828
29+ volumeMounts :
30+ - name : " test"
31+ mountPath : " /mnt/testMount"
32+ subPath : " /test"
33+
34+
35+ volumes :
36+ - name : " test"
37+ PersistentVolumeClaim :
38+ claimName : " test"
39+
40+
41+
2942config :
3043 database :
3144 database_ip : " 127.0.0.1"
You can’t perform that action at this time.
0 commit comments