-
Notifications
You must be signed in to change notification settings - Fork 27
/
values.yaml
66 lines (62 loc) · 1.65 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
# Override file suitable for local deployment of the Corda Helm chart against version 0.3.0 of the corda-dev prereqs Helm chart.
#
# First use `./gradlew publishOSGiImage --parallel` to create local docker images
# Then deploy using:
#
# helm upgrade --install corda -n corda \
# charts/corda \
# --values values.yaml \
# --values debug.yaml \
# --wait
#
# 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.3.0"
logging:
format: "text"
level: "info"
bootstrap:
restApiAdmin:
password:
value: "admin"
db:
databases:
- id: "default"
username:
value: "postgres"
password:
valueFrom:
secretKeyRef:
name: "prereqs-postgresql"
key: "postgres-password"
kafka:
replicas: 1
kafka:
bootstrapServers: "prereqs-kafka:9092"
sasl:
enabled: true
username:
value: "user"
password:
valueFrom:
secretKeyRef:
name: "prereqs-kafka-jaas"
key: "client-passwords"
tls:
enabled: true
truststore:
valueFrom:
secretKeyRef:
name: "prereqs-kafka-0-tls"
key: "ca.crt"
databases:
- id: "default"
name: "cordacluster"
port: 5432
type: "postgresql"
host: "prereqs-postgresql"