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
Is this a BUG REPORT or FEATURE REQUEST? (choose one): BUG REPORT
Version of Helm and Kubernetes:
N/A
What happened:
ExcludedCharts does not work when ChartDirs contains path with more than one level: ie. charts/apps or charts/my/path/is/longer/than/yours.
charts/apps
charts/my/path/is/longer/than/yours
What you expected to happen:
Chart is excluded correctly.
How to reproduce it (as minimally and precisely as possible):
chart-dirs: - charts/apps excluded-charts: # neither of those works - charts/apps/chart-name - chart-name
Anything else we need to know:
I guess it is this line
chart-testing/pkg/chart/chart.go
Line 721 in 2407e7d
pathElements
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Is this a BUG REPORT or FEATURE REQUEST? (choose one): BUG REPORT
Version of Helm and Kubernetes:
N/A
What happened:
ExcludedCharts does not work when ChartDirs contains path with more than one level: ie.
charts/apps
orcharts/my/path/is/longer/than/yours
.What you expected to happen:
Chart is excluded correctly.
How to reproduce it (as minimally and precisely as possible):
Anything else we need to know:
I guess it is this line
chart-testing/pkg/chart/chart.go
Line 721 in 2407e7d
pathElements
is [charts, apps, chart-name], so chart name is 2 not 1 in this example. This will be different if path has more levels.The text was updated successfully, but these errors were encountered: