-
Notifications
You must be signed in to change notification settings - Fork 238
New issue
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
[FEATURE_REQUEST] Allow excluding 3rd party Helm charts check #467
Labels
enhancement
New feature or request
Comments
refs: #353 |
Fixed by: #515 |
Hi @janisz. I'm still reproducing this issue with kube-linter 0.6.3.
|
@vzabawski charts are loaded differently. I'm not sure how is your project structured but let's take kube-linter test dir (
Following command will not scan anything: kube-linter lint \
--ignore-paths '**/*.yaml' \
--ignore-paths '**/*.tgz' \
--ignore-paths '**/mychart' \
tests/testdata
Could you share your dir structure? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description of the problem/feature request
I have a Helm chart "my-app" which contains some resources. This chart uses several 3rd party charts as a dependency. When I'm verifying my chart, all errors are related to 3rd party charts which I can't fix.
Description of the existing behavior vs. expected behavior
It would be nice if
ignorePaths
supported Helm charts or if there was some other way to exclude 3rd party charts from the validation. Right now the workaround for me is to cleanupcharts
dir in my Helm chart. In that case, kube-linter doesn't pick up 3rd party charts due to their absence and does not validate.Here's my chart structure:
The text was updated successfully, but these errors were encountered: