You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{
"additionalProperties": false,
"properties": {
"dep-a": {
"additionalProperties": false,
"properties": {
"foo": {
"default": "bar",
"title": "foo",
"type": "string"
}
},
"title": "dep-a",
"type": "object",
"required": [
"foo"
]
},
"global": {
"description": "Global values are values that can be accessed from any chart or subchart by exactly the same name.",
"title": "global",
"type": "object"
},
"node-problem-detector": {
"properties": {
"affinity": {
"additionalProperties": false,
"title": "affinity",
"type": "object"
},
...
Possibly simplest to just inline the schema under the alias, but another one could be that aliased dependencies become properties with $refs to a $def of the underlying dependency, like
Chart dependencies specified with an alias field have their schema generated under the dependency
name
rather than thealias
.Chart.yaml
values.yaml
Generated Schema
Possibly simplest to just inline the schema under the alias, but another one could be that aliased dependencies become properties with
$ref
s to a$def
of the underlying dependency, likeso the supplied
values.yaml
file ofdep-a: { foo: bar }
would be invalid here.Possibly relates to #30
The text was updated successfully, but these errors were encountered: