mirror of
https://github.com/bjw-s-labs/helm-charts.git
synced 2025-07-03 08:37:03 +02:00
fix(common): Make life easier for @joryirving by relaxing schema
This commit is contained in:
parent
43320eaa21
commit
d6749abdfc
2 changed files with 5 additions and 5 deletions
|
@ -51,7 +51,7 @@
|
|||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"anyOf": [
|
||||
{"type": ["string", "number", "boolean"]},
|
||||
{"type": ["string", "number", "boolean", "null"]},
|
||||
{"$ref": "#/envValue"},
|
||||
{"$ref": "#/envValueFrom"},
|
||||
{"$ref": "#/envImplicitValueFrom"}
|
||||
|
@ -172,7 +172,7 @@
|
|||
"type": "string"
|
||||
},
|
||||
"value": {
|
||||
"type": ["string", "number", "boolean"]
|
||||
"type": ["string", "number", "boolean", "null"]
|
||||
}
|
||||
},
|
||||
"required": ["name", "value"]
|
||||
|
@ -183,7 +183,7 @@
|
|||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": ["string", "number", "boolean"]
|
||||
"type": ["string", "number", "boolean", "null"]
|
||||
},
|
||||
"dependsOn": {"$ref": "#/envDependsOn"}
|
||||
},
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
"annotations": {
|
||||
"type": ["object", "null"],
|
||||
"additionalProperties": {
|
||||
"type": ["string"]
|
||||
"type": ["string", "null"]
|
||||
}
|
||||
},
|
||||
|
||||
"labels": {
|
||||
"type": ["object", "null"],
|
||||
"additionalProperties": {
|
||||
"type": ["string"]
|
||||
"type": ["string", "null"]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue