Fix values schema to support config in YAML (#684)
This commit is contained in:
parent
460b5e1b65
commit
4da0638f3e
1 changed files with 12 additions and 3 deletions
|
@ -566,7 +566,10 @@
|
|||
]
|
||||
},
|
||||
"config": {
|
||||
"type": "string"
|
||||
"type": [
|
||||
"string",
|
||||
"object"
|
||||
]
|
||||
},
|
||||
"disruptionBudget": {
|
||||
"type": "object",
|
||||
|
@ -589,7 +592,10 @@
|
|||
"type": "object",
|
||||
"properties": {
|
||||
"config": {
|
||||
"type": "string"
|
||||
"type": [
|
||||
"string",
|
||||
"object"
|
||||
]
|
||||
},
|
||||
"enabled": {
|
||||
"type": "boolean"
|
||||
|
@ -822,7 +828,10 @@
|
|||
"type": "object",
|
||||
"properties": {
|
||||
"config": {
|
||||
"type": "string"
|
||||
"type": [
|
||||
"string",
|
||||
"object"
|
||||
]
|
||||
},
|
||||
"enabled": {
|
||||
"type": [
|
||||
|
|
Loading…
Reference in a new issue