-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
50 lines (41 loc) · 923 Bytes
/
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
scraper:
image:
repository: scraper
tag: 0.1.0-SNAPSHOT
envSecrets:
enabled: true
name: scraper-secret
env:
KAFKA_BOOTSTRAP_SERVERS: kafka-service:9092
decoder:
image:
repository: flink-processor
tag: 0.1.0-SNAPSHOT
command:
- "/opt/docker/bin/decoder"
env:
KAFKA_BOOTSTRAP_SERVERS: kafka-service:9092
de-duplicator:
image:
repository: flink-processor
tag: 0.1.0-SNAPSHOT
command:
- "/opt/docker/bin/de-duplicator"
env:
KAFKA_BOOTSTRAP_SERVERS: kafka-service:9092
database-sink:
image:
repository: flink-processor
tag: 0.1.0-SNAPSHOT
command:
- "/opt/docker/bin/database-sink"
envSecrets:
enabled: true
name: database-sink-secret
postgresql:
enabled: true
auth:
database: "ns-disruptions"
existingSecret: "database-sink-secret"
env:
KAFKA_BOOTSTRAP_SERVERS: kafka-service:9092