File tree Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ description: >
12
12
# This is the chart version. This version number should be incremented each time you make changes
13
13
# to the chart and its templates, including the app version.
14
14
# Versions are expected to follow Semantic Versioning (https://semver.org/)
15
- version : 0.5.2
15
+ version : 0.5.3
16
16
17
17
# This is the version number of the application being deployed. This version number should be
18
18
# incremented each time you make changes to the application. Versions are not expected to
@@ -43,5 +43,4 @@ annotations:
43
43
- name: Helm Chart
44
44
url: https://github.com/pecanproject/bety-helm
45
45
artifacthub.io/changes : |
46
- - use new check image to use PG environment variables
47
- - add-user and load-db are now jobs, not hooks (prevent timeout issues)
46
+ - need to check for table before start bety application
Original file line number Diff line number Diff line change @@ -124,6 +124,9 @@ The command removes all the Kubernetes components associated with the chart and
124
124
125
125
## ChangeLog
126
126
127
+ ### 0.5.3
128
+ - need to check for table before start bety application
129
+
127
130
### 0.5.2
128
131
- use new check image to use PG environment variables
129
132
- add-user and load-db are now jobs, not hooks (prevent timeout issues)
Original file line number Diff line number Diff line change 42
42
imagePullPolicy : {{ .Values.image.pullPolicy }}
43
43
env :
44
44
{{- include "betydb.postgresqlEnv" . | nindent 12 }}
45
- - name : PG_TABLE
45
+ - name : PGDATABASE
46
46
value : {{ .Values.betyDatabase | quote }}
47
+ - name : PG_TABLE
48
+ value : " sessions"
47
49
containers :
48
50
- name : {{ .Chart.Name }}
49
51
image : " {{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
Original file line number Diff line number Diff line change 31
31
imagePullPolicy : {{ .Values.image.pullPolicy }}
32
32
env :
33
33
{{- include "betydb.postgresqlEnv" . | nindent 12 }}
34
- - name : PG_TABLE
34
+ - name : PGDATABASE
35
35
value : {{ .Values.betyDatabase | quote }}
36
+ - name : PG_TABLE
37
+ value : " sessions"
36
38
containers :
37
39
{{- range $index, $element := .Values.users }}
38
40
- name : bety-add-user-{{ $index }}
You can’t perform that action at this time.
0 commit comments