-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvalues.yaml
71 lines (62 loc) · 1.47 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
debug: false
# base url for the whole application.
# for example you can set it to "/binder-launches"
baseUrl: "/"
replicaCount: 1
image:
repository: "bitnik/binder-launches"
tag: "e8aef770"
pullPolicy: IfNotPresent
nameOverride: ""
fullnameOverride: ""
service:
type: ClusterIP
port: 80
nodePort:
resources:
requests:
cpu: "0.5"
memory: 512Mi
limits:
cpu: "1"
memory: 1Gi
podAnnotations: {}
nodeSelector: {}
tolerations: []
affinity: {}
db:
# following settings are required to connect to your timescaledb instance
username:
password:
host:
port:
database:
# run database upgrade (migration) or not
upgrade: false
# following 2 configs are effective only at first setup
# interval in event time that each chunk covers
chunkTimeInterval: "1 month"
# interval for data retention
dataRetentionInterval: "10 years"
ssl: true
parser:
# NOTE: `since` setting is disabled in the chart
# by default start with first archive (2018-11-03) or from date of last saved launch in db
# since:
# end date for parsing. leave this empty and set `continuous` to true if you want to contiously parse all events
until:
# to continue parsing after parsing given range
continuous: true
deleteOld: false
image:
repository: "bitnik/binder-launches-parser-py"
tag: "e8aef770"
pullPolicy: IfNotPresent
resources:
requests:
cpu: "0.5"
memory: 512Mi
limits:
cpu: "1"
memory: 1Gi
nodeSelector: {}