Skip to content

Commit b79e515

Browse files
committed
add enable to dependencies
1 parent e6c3d1a commit b79e515

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

charts/library/common/schemas/dependencies.json

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,25 @@
22
"$schema": "http://json-schema.org/draft-07/schema#",
33
"type": "object",
44
"additionalProperties": {
5-
"$ref": "../values.schema.json"
5+
"allOf": [
6+
{
7+
"$ref": "../values.schema.json"
8+
},
9+
{
10+
"type": "object",
11+
"required": [
12+
"enabled"
13+
],
14+
"properties": {
15+
"enabled": {
16+
"type": [
17+
"boolean",
18+
"string"
19+
]
20+
}
21+
}
22+
}
23+
]
624
},
725
"description": "Configuration for `dependencies`."
826
}

0 commit comments

Comments
 (0)