Skip to content

Commit

Permalink
add switch to enable/disable billing to kafka
Browse files Browse the repository at this point in the history
  • Loading branch information
kofemann committed Sep 17, 2024
1 parent bf3d866 commit a272d53
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,11 @@ data:
chimerashell.db.name = ${chimera.db.name}

dcache.zookeeper.connection={{ $.Values.zookeeper.servers }}
dcache.kafka.bootstrap-servers=billing-kafka:9092

{{- if .Values.kafka.enabled}}
dcache.kafka.bootstrap-servers={{ $.Values.kafka.bootstrap_servers }}
dcache.enable.kafka = true
{{- end}}
dcache.layout=dcache-k8s
dcache.enable.overwrite = true
#webdav.redirect.allow-https=false
Expand Down
3 changes: 3 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ cell:
zookeeper:
servers: cells-zookeeper:2181

kafka:
enabled: true
bootstrap_servers: billing-kafka:9092

# liveness, readiness and startup probes

Expand Down

0 comments on commit a272d53

Please sign in to comment.