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
Many lines of the charts refer to the /quickwit/node.yaml hardcoded path.
/quickwit/node.yaml
However, I think they should refer to the configLocation variable.
BEFORE: Example
volumeMounts: - name: config mountPath: /quickwit/node.yaml
FIXED:
volumeMounts: - name: config mountPath: {{ $.Values.configLocation }}
(For the subPath field, it could be replaced to be dynamic and use the Helm function "base")
The text was updated successfully, but these errors were encountered:
added this PR, and tested it locally #116
Sorry, something went wrong.
@rdettai can you have a look?
rdettai
No branches or pull requests
Many lines of the charts refer to the
/quickwit/node.yaml
hardcoded path.However, I think they should refer to the configLocation variable.
BEFORE:
Example
FIXED:
(For the subPath field, it could be replaced to be dynamic and use the Helm function "base")
The text was updated successfully, but these errors were encountered: