File tree Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : quickwit
3
3
description : Open-Source & Cloud-Native Log Management at any scale.
4
4
type : application
5
- version : 0.1.9
5
+ version : 0.1.10
6
6
appVersion : " edge"
7
7
keywords :
8
8
- quickwit
Original file line number Diff line number Diff line change @@ -170,6 +170,7 @@ Quickwit metastore environment
170
170
*/} }
171
171
{ {- define " quickwit.metastore.environment" -} }
172
172
{ { include " quickwit.environment" . } }
173
+ { {- if .Values.config.postgres } }
173
174
- name: POSTGRES_HOST
174
175
value: { { required " A valid config.postgres.host is required!" .Values.config.postgres.host } }
175
176
- name: POSTGRES_PORT
@@ -186,4 +187,5 @@ Quickwit metastore environment
186
187
- name: QW_METASTORE_URI
187
188
value: "postgres://$(POSTGRES_USERNAME):$(POSTGRES_PASSWORD)@$(POSTGRES_HOST):$(POSTGRES_PORT)/$(POSTGRES_DATABASE)"
188
189
{ {- end } }
190
+ { {- end } }
189
191
Original file line number Diff line number Diff line change @@ -6,7 +6,9 @@ metadata:
6
6
{{- include "quickwit.labels" . | nindent 4 }}
7
7
type : Opaque
8
8
data :
9
+ {{- if .Values.postgres }}
9
10
postgres.password : {{ required "A valid config.postgres.password is required!" .Values.config.postgres.password | b64enc | quote }}
11
+ {{- end }}
10
12
{{- if .Values.config.s3.secret_key }}
11
13
s3.secret_key : {{ .Values.config.s3.secret_key | b64enc | quote }}
12
14
{{- end }}
Original file line number Diff line number Diff line change @@ -256,12 +256,13 @@ bootstrap:
256
256
257
257
# Quickwit configuration
258
258
config :
259
- postgres :
260
- host : " "
261
- port : 5432
262
- database : metastore
263
- username : quickwit
264
- password : " "
259
+ # Metastore configuration.
260
+ postgres : {}
261
+ # host: ""
262
+ # port: 5432
263
+ # database: metastore
264
+ # username: quickwit
265
+ # password: ""
265
266
266
267
s3 : {}
267
268
# endpoint: "https://s3.eu-west-1.amazonaws.com"
You can’t perform that action at this time.
0 commit comments