forked from corda/corda-runtime-os
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values-prereqs.yaml
65 lines (60 loc) · 1.58 KB
/
values-prereqs.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
# Override file suitable for local deployment of the Corda Helm chart against version 0.2.0 of the corda-dev-prereqs Helm chart.
#
# See `debug.yaml` for debug settings.
#
# NOTE: The below assumes you deploy Kafka and the PostgreSQL database in the same namespace, so that domain names containing just the service name are resolved (i.e. prereqs-postgresql instead of prereqs-postgresql.<namespace>)
# If that is not the case, you might need to add the namespace as a suffix.
imagePullPolicy: "IfNotPresent"
image:
registry: "corda-os-docker-dev.software.r3.com"
tag: "latest-local-5.2.0"
logging:
format: "text"
level: "info"
bootstrap:
restApiAdmin:
password:
value: "admin"
# Disable pre-install check as we are not specifying resources
preinstallCheck:
enabled: false
db:
cluster:
password:
valueFrom:
secretKeyRef:
name: "prereqs-postgres"
key: "postgres-password"
username:
value: "postgres"
kafka:
replicas: 1
db:
cluster:
host: "prereqs-postgres"
username:
value: "corda"
password:
valueFrom:
secretKeyRef:
name: "prereqs-postgres"
key: "corda-password"
kafka:
bootstrapServers: "prereqs-kafka:9092"
sasl:
enabled: true
mechanism: "PLAIN"
username:
value: "admin"
password:
valueFrom:
secretKeyRef:
name: "prereqs-kafka"
key: "admin-password"
tls:
enabled: true
truststore:
valueFrom:
secretKeyRef:
name: "prereqs-kafka"
key: "ca.crt"