blob: 6cf4e26635c86ecc0c5304eb7461bc7a221202af (
plain) (
blame)
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
|
# Helmsman
helmRepos:
kafka-ui: https://provectus.github.io/kafka-ui-charts
namespaces:
default:
metallb-system:
apps:
metallb:
namespace: metallb-system
enabled: true
wait: true
chart: oci://registry-1.docker.io/bitnamicharts/metallb
version: 6.1.3
valuesFile: metallb.yml
priority: -4
kafka:
namespace: default
enabled: true
wait: true
chart: oci://registry-1.docker.io/bitnamicharts/kafka
version: 28.1.1
priority: -3
set:
controller.replicaCount: 1
controller.livenessProbe.initialDelaySeconds: 120
provisioning.numPartitions: 2
extraConfig: |
offsets.topic.replication.factor=1
transaction.state.log.replication.factor=1
log.retention.hours=24
log.retention.bytes=2147483648
# To enable: helm install kafka-ui kafka-ui/kafka-ui -f kafka-ui.yml --version 0.7.6
kafka-ui:
namespace: default
enabled: false
chart: kafka-ui/kafka-ui
version: 0.7.6
priority: -2
valuesFile: kafka-ui.yml
payload-processor:
namespace: default
enabled: true
chart: payload-processor
version: 0.1.0
priority: -1
set:
image.tag: "payload-processor-$COMMIT_SHA"
rest-api:
namespace: default
enabled: true
chart: rest-api
version: 0.1.0
priority: -1
set:
image.tag: "rest-api-$COMMIT_SHA"
|