-
Notifications
You must be signed in to change notification settings - Fork 440
Expand file tree
/
Copy pathvalues.elasticsearch.yaml
More file actions
34 lines (33 loc) · 1.11 KB
/
values.elasticsearch.yaml
File metadata and controls
34 lines (33 loc) · 1.11 KB
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
# This is an example of using an external Elasticsearch for Temporal visibility.
# Replace connection details with your Elasticsearch cluster information.
server:
config:
persistence:
defaultStore: default
visibilityStore: visibility
numHistoryShards: 512
datastores:
default:
# Configure your default store (SQL or Cassandra)
sql:
pluginName: mysql8
driverName: mysql8
databaseName: temporal
connectAddr: "mysql.example.com:3306"
connectProtocol: "tcp"
user: temporal
password: password
visibility:
elasticsearch:
version: v7
url:
scheme: http
host: "elasticsearch-master-headless:9200"
username: ""
password: ""
# for a production deployment use this instead of `password` and provision the secret beforehand
# existingSecret: temporal-es-secret
# secretKey: password
logLevel: error
indices:
visibility: temporal_visibility_v1