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
Following syntax in Chart.yaml should be taken into account in generated JSON schema:
apiVersion: v2 version: 1.0.0 name: bundle dependencies: - name: subchart version: 1.0.0 import-values: - child: child-key parent: parent-key
Properties of child-key in subchart should be considered as valid when used in parent-key in bundle chart:
# already valid subchart: child-key: test: value # should also be valid parent-key: test: value
Short syntax for import-values in Chart.yaml should also be supported:
apiVersion: v2 version: 1.0.0 name: bundle dependencies: - name: subchart version: 1.0.0 import-values: - data
It should be treated as :
dependencies: - name: subchart version: 1.0.0 import-values: - child: exports.data parent: data
The text was updated successfully, but these errors were encountered:
8959c47
fstaudt
No branches or pull requests
Following syntax in Chart.yaml should be taken into account in generated JSON schema:
Properties of child-key in subchart should be considered as valid when used in parent-key in bundle chart:
Short syntax for import-values in Chart.yaml should also be supported:
It should be treated as :
The text was updated successfully, but these errors were encountered: