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 openarchiefbeheer, setting these fields in the values.yaml:
livenessProbe: {} readinessProbe: {}
results in
charts/charts/openarchiefbeheer$ helm lint . ==> Linting . [INFO] Chart.yaml: icon is recommended [ERROR] templates/deployment.yaml: unable to parse YAML: error converting YAML to JSON: yaml: line 56: did not find expected key Error: 1 chart(s) linted, 1 chart(s) failed
While setting the probes to:
livenessProbe: initialDelaySeconds: 60 periodSeconds: 10 timeoutSeconds: 5 failureThreshold: 6 successThreshold: 1 readinessProbe: initialDelaySeconds: 30 periodSeconds: 10 timeoutSeconds: 5 failureThreshold: 6 successThreshold: 1
Results in a chart without errors when running helm lint.
helm lint
We need to find a way to disable the probes without breaking the chart.
The text was updated successfully, but these errors were encountered:
Example: https://github.com/bitnami/charts/blob/main/bitnami/grafana/templates/deployment.yaml
Sorry, something went wrong.
✨ [#119] Follow grafana example to disable liveness probe
e2c0722
For now just for OAB, if it works well, I will do it also for the other charts. I removed the readinessProbe value because it was not being used.
SilviaAmAm
Successfully merging a pull request may close this issue.
In openarchiefbeheer, setting these fields in the values.yaml:
results in
While setting the probes to:
Results in a chart without errors when running
helm lint
.We need to find a way to disable the probes without breaking the chart.
The text was updated successfully, but these errors were encountered: