forked from pelias-deprecated/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
100 lines (91 loc) · 2.97 KB
/
values.yaml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# override this to use external elasticsearch
elasticsearch:
host: "elasticsearch-service"
port: 9200
protocol: "http"
## API settings
api:
replicas: 1
canaryReplicas: 0
dockerTag: "latest"
canaryDockerTag: null # set this value to enable the canary deployment
indexName: "pelias"
attributionURL: "http://api.yourpelias.com/attribution"
# Whether the API service should be externally accessible
# Set this to true if you want to, for example on AWS, set up an ELB for the API
externalService: false
# whether the external service should be internet facing or private (default private)
privateLoadBalancer: true
accessLog: "common" # allows configuring access log format. Empty string disables access log
autocomplete:
exclude_address_length: 0
requests:
memory: 0.25Gi
cpu: 0.1
minReadySeconds: 10
annotations: {}
placeholder:
enabled: true
replicas: 1
host: "http://pelias-placeholder-service:3000/"
dockerTag: "latest"
storeURL: "https://s3.amazonaws.com/pelias-data.nextzen.org/placeholder/store.sqlite3.gz"
cpus: 1 # how many CPUs to allow using via the npm `cluster2` module
retries: 1 # number of time the API will retry requests to placeholder
timeout: 5000 # time in ms the API will wait for placeholder responses
annotations: {}
libpostal:
enabled: true
replicas: 1
host: "http://pelias-libpostal-service:4400/"
dockerTag: "latest"
retries: 1 # number of time the API will retry requests to libpostal
timeout: 5000 # time in ms the API will wait for libpostal responses
annotations: {}
interpolation:
enabled: false
replicas: 1
host: "http://pelias-interpolation-service:3000/"
dockerTag: "latest"
# URL prefix of location where streets.db and address.db will be downloaded
downloadPath: " https://s3.amazonaws.com/pelias-data.nextzen.org/interpolation/current"
retries: 1 # number of time the API will retry requests to interpolation service
timeout: 5000 # time in ms the API will wait for interpolation service responses
annotations: {}
pvc: {}
# create: true
# name: interpolation-pvc
# storageClass: aws-efs
# accessModes: ReadWriteMany
# storage: 10Gi
# annotations: {}
pip:
enabled: true
replicas: 1
host: "http://pelias-pip-service:3102/"
dockerTag: "latest"
maxUnavailable: 0 # adjusts rolling update settings
retries: 1 # number of time the API will retry requests to the pip service
timeout: 5000 # time in ms the API will wait for pip service responses
annotations: {}
pvc: {}
# create: true
# name: pip-pvc
# storageClass: aws-efs
# accessModes: ReadWriteMany
# storage: 10Gi
# annotations: {}
dashboard:
enabled: true
replicas: 1
dockerTag: "latest"
domain: null # set this to enable an ingress
# Deprecated fields
# pipEnabled: true
# pipHost: "http://pelias-pip-service:3102/"
# interpolationEnabled: false
# interpolationHost: "http://pelias-interpolation-service:3000/"
# Importer settings
whosonfirst:
sqlite: false
dataHost: null