about summary refs log tree commit diff
path: root/k8s/helmsman.yml
blob: 47bee36cd22f7287965390f4909afb1f8cfb6bf5 (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
# Helmsman

helmRepos:
  metallb: https://metallb.github.io/metallb

namespaces:
  default:
  metallb-system:

apps:
  metallb:
    namespace: metallb-system
    enabled: true
    wait: true
    chart: metallb/metallb
    version: 0.14.5
    valuesFile: metallb.yml

  kafka:
    namespace: default
    enabled: true
    wait: true
    chart: oci://registry-1.docker.io/bitnamicharts/kafka
    version: 28.1.1
    set:
      controller.replicaCount: 1
      controller.livenessProbe.initialDelaySeconds: 120
      extraConfig: |
        offsets.topic.replication.factor=1
        transaction.state.log.replication.factor=1

  payload-processor:
    namespace: default
    enabled: true
    wait: true
    chart: payload-processor
    version: 0.1.0
    set:
      image.tag: "payload-processor-$COMMIT_SHA"

  rest-api:
    namespace: default
    enabled: true
    wait: true
    chart: rest-api
    version: 0.1.0
    set:
      image.tag: "rest-api-$COMMIT_SHA"