We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the zookeeper helm chart, some config specs cannot be set because the paths are incorrect. They should be;
{{- if .Values.config.xxxx}} xxxx: {{ .Values.config.xxxx }} {{- end }}
But in some lines, they are;
{{- if .Values.config.xxxx}} xxxx: {{ .Values.xxxx }} {{- end }}
zookeeper-operator/charts/zookeeper/templates/zookeeper.yaml
Lines 91 to 137 in b50eaa4
It is necessary to set correct paths.
The text was updated successfully, but these errors were encountered:
@kentakozuka this would require a minor fix. Would u like to send out a PR in order to fix this issue?
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Description
In the zookeeper helm chart, some config specs cannot be set because the paths are incorrect.
They should be;
But in some lines, they are;
Location
zookeeper-operator/charts/zookeeper/templates/zookeeper.yaml
Lines 91 to 137 in b50eaa4
Suggestions for an improvement
It is necessary to set correct paths.
The text was updated successfully, but these errors were encountered: