Skip to content

Commit

Permalink
Issue 299: Fix incorrect paths in config spec (#305)
Browse files Browse the repository at this point in the history
Co-authored-by: Alim Akbashev <[email protected]>
  • Loading branch information
alim-akbashev and Alim Akbashev authored Feb 25, 2021
1 parent 4f6e7bd commit 7a18be1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions charts/zookeeper/templates/zookeeper.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,22 +111,22 @@ spec:
commitLogCount: {{ .Values.config.commitLogCount }}
{{- end }}
{{- if .Values.config.snapSizeLimitInKb }}
snapSizeLimitInKb: {{ .Values.snapSizeLimitInKb }}
snapSizeLimitInKb: {{ .Values.config.snapSizeLimitInKb }}
{{- end }}
{{- if .Values.config.maxCnxns }}
maxCnxns: {{ .Values.maxCnxns }}
maxCnxns: {{ .Values.config.maxCnxns }}
{{- end }}
{{- if .Values.config.maxClientCnxns }}
maxClientCnxns: {{ .Values.maxClientCnxns }}
maxClientCnxns: {{ .Values.config.maxClientCnxns }}
{{- end }}
{{- if .Values.config.minSessionTimeout }}
minSessionTimeout: {{ .Values.minSessionTimeout }}
minSessionTimeout: {{ .Values.config.minSessionTimeout }}
{{- end }}
{{- if .Values.config.maxSessionTimeout }}
maxSessionTimeout: {{ .Values.maxSessionTimeout }}
maxSessionTimeout: {{ .Values.config.maxSessionTimeout }}
{{- end }}
{{- if .Values.config.autoPurgeSnapRetainCount }}
autoPurgeSnapRetainCount: {{ .Values.autoPurgeSnapRetainCount }}
autoPurgeSnapRetainCount: {{ .Values.config.autoPurgeSnapRetainCount }}
{{- end }}
{{- if .Values.config.autoPurgePurgeInterval }}
autoPurgePurgeInterval: {{ .Values.config.autoPurgePurgeInterval }}
Expand Down

0 comments on commit 7a18be1

Please sign in to comment.