Skip to content

Commit

Permalink
Fix values schema to support config in YAML (#684)
Browse files Browse the repository at this point in the history
  • Loading branch information
gw0 authored Mar 28, 2022
1 parent 460b5e1 commit 4da0638
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,10 @@
]
},
"config": {
"type": "string"
"type": [
"string",
"object"
]
},
"disruptionBudget": {
"type": "object",
Expand All @@ -589,7 +592,10 @@
"type": "object",
"properties": {
"config": {
"type": "string"
"type": [
"string",
"object"
]
},
"enabled": {
"type": "boolean"
Expand Down Expand Up @@ -822,7 +828,10 @@
"type": "object",
"properties": {
"config": {
"type": "string"
"type": [
"string",
"object"
]
},
"enabled": {
"type": [
Expand Down

0 comments on commit 4da0638

Please sign in to comment.