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
When JSON schemas are extracted from dependencies, aliases used for sub-charts are ignored.
As a result, aggregated JSON schema incorrectly uses the chart name instead of the alias for the sub-charts.
dependent-chart/Chart.yaml:
apiVersion: v2 name: dependent-chart version: 0.1.0 description: Dependent helm chart with alias in dependencies dependencies: - name: sub-chart version: 0.1.0 repository: "@thirdparty" alias: alias-chart
main-chart/Chart.yaml:
apiVersion: v2 name: main-chart version: 0.1.0 description: Main helm chart dependencies: - name: dependent-chart version: 0.1.0 repository: "@thirdparty"
main-chart/values.yaml:
dependent-chart: sub-chart: # is incorrectly documented and auto-completed alias-chart: # is incorrectly considered as invalid
The text was updated successfully, but these errors were encountered:
8fd69e8
fix: JSON schema extractor should take aliases into account
dbe180f
Closes #133
No branches or pull requests
When JSON schemas are extracted from dependencies, aliases used for sub-charts are ignored.
As a result, aggregated JSON schema incorrectly uses the chart name instead of the alias for the sub-charts.
Example
dependent-chart/Chart.yaml:
main-chart/Chart.yaml:
main-chart/values.yaml:
The text was updated successfully, but these errors were encountered: