File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed
Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -15,14 +15,14 @@ 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.2.2
18+ version : 0.2.3
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
2222# follow Semantic Versioning. They should reflect the version the application is using.
2323# It is recommended to use it with quotes.
2424# Not used because too difficult to follow correctly
25- # appVersion: "1.16.0"
25+ # appVersion: "1.16.0
2626
2727# A URL to an SVG or PNG image to be used as an icon
2828icon : https://avatars.githubusercontent.com/u/54469796?s=280&v=4
Original file line number Diff line number Diff line change 1+ * .sql
Original file line number Diff line number Diff line change @@ -6,5 +6,11 @@ metadata:
66 labels :
77 {{- include "supabase.labels" . | nindent 4 }}
88data :
9- {{- toYaml .Values.db.config | nindent 2 }}
9+ {{- range $path, $_ := .Files.Glob "migrations/*.sql" }}
10+ {{ base $path }} : |
11+ {{ $.Files.Get $path | indent 4 }}
1012{{- end }}
13+ {{- if .Values.db.config }}
14+ {{- toYaml .Values.db.config | nindent 2 }}
15+ {{- end }}
16+ {{- end }}
You can’t perform that action at this time.
0 commit comments