-
Notifications
You must be signed in to change notification settings - Fork 27
/
values-prereqs.yaml
68 lines (64 loc) · 1.84 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
66
67
68
# Override file suitable for local deployment of the Corda Helm chart against version 0.3.0 of the corda-dev-prereqs Helm chart.
#
# Create local docker images:
# ./gradlew publishOSGiImage --parallel
#
# Deploy corda-dev-prereqs Helm Chart:
# helm -n corda install prereqs oci://registry-1.docker.io/corda/corda-dev-prereqs --version 0.3.0 --timeout 10m --wait
#
# Deploy corda Helm Chart:
# helm dependency build charts/corda && helm -n corda upgrade --install corda charts/corda --values debug.yaml --values values-prereqs.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"
databases:
- id: "default"
name: "cordacluster"
port: 5432
type: "postgresql"
host: "prereqs-postgres"
bootstrap:
restApiAdmin:
password:
value: "admin"
db:
databases:
- id: "default"
username:
value: "postgres"
password:
valueFrom:
secretKeyRef:
name: "prereqs-postgres"
key: "postgres-password"
kafka:
replicas: 1
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"