File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ apiVersion: v1
2
2
appVersion : " 1.3.3"
3
3
description : A Helm chart for Kubernetes
4
4
name : burrow
5
- version : 0.1.6
5
+ version : 0.1.7
6
6
icon : https://media.licdn.com/dms/image/C4D0BAQEj-Fx1qtIAKQ/company-logo_200_200/0?e=2159024400&v=beta&t=90Cva_S5-k44uPf_P11ZdHQ6WnUCjuSrTGQshbTvWVo
Original file line number Diff line number Diff line change 30
30
{{- if $root.Values.burrow.config.tls }}
31
31
tls="{{ $value.tls | default "" }}"
32
32
{{- end }}
33
+ {{- if $root.Values.burrow.config.sasl }}
34
+ sasl="{{ $value.sasl | default "" }}"
35
+ {{- end }}
33
36
{{ end }}
34
37
35
38
{{ range $key, $value := .Values.burrow.config.tls }}
40
43
noverify={{ $value.noverify | default false }}
41
44
{{ end }}
42
45
46
+ {{ range $key, $value := .Values.burrow.config.sasl }}
47
+ [sasl.{{ $key }}]
48
+ username="{{ $value.username | default "burrow" }}"
49
+ password="{{ $value.password | default "burrow" }}"
50
+ handshake-first={{ $value.handshake_first | default false }}
51
+ algorithm="{{ $value.algorithm | default "SCRAM-SHA-512" }}"
52
+ {{ end }}
53
+
43
54
{{ range $key, $value := .Values.burrow.config.cluster }}
44
55
[cluster.{{ default $key }}]
45
56
class-name={{ $value.className | default "kafka" | quote }}
Original file line number Diff line number Diff line change @@ -34,6 +34,9 @@ burrow:
34
34
# # Maps to [tls] section in burrow.toml
35
35
tls : {}
36
36
37
+ # # Maps to [sasl] section in burrow.toml
38
+ sasl : {}
39
+
37
40
# # Maps to [general] section in burrow.toml
38
41
general : {}
39
42
# pidfile: burrow.pid
You can’t perform that action at this time.
0 commit comments