forked from hyperledger/fabric-x-committer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquery.yaml
More file actions
41 lines (39 loc) · 1015 Bytes
/
Copy pathquery.yaml
File metadata and controls
41 lines (39 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Copyright IBM Corp. All Rights Reserved.
#
# SPDX-License-Identifier: Apache-2.0
#
# Configuration for the server
server:
endpoint: {{ .ServiceEndpoints.Server | default "localhost:0" }}
tls:
mode: {{ .ServiceTLS.Mode }}
key-path: {{ .ServiceTLS.KeyPath }}
cert-path: {{ .ServiceTLS.CertPath }}
ca-cert-paths:
{{- range .ServiceTLS.CACertPaths }}
- {{ . }}
{{- end }}
monitoring:
server:
endpoint: {{ .ServiceEndpoints.Metrics | default "localhost:0" }}
database:
endpoints:
{{- range .DB.Endpoints }}
- {{ . }}
{{- end }}
username: "yugabyte"
# TODO: pass password via environment variable
password: "yugabyte"
database: {{ .DB.Name }}
load-balance: {{ .DB.LoadBalance }}
max-connections: 10
min-connections: 5
retry:
max-elapsed-time: 1h
logging:
enabled: {{ .Logging.Enabled }}
level: {{ .Logging.Level }}
caller: {{ .Logging.Caller }}
development: {{ .Logging.Development }}
output: {{ .Logging.Output }}
name: query