mirror of https://github.com/helm/helm
When --skip-schema-validation is set, any schema contain in the helm chart is ignored. Defaults to 'false'. Closes #10398 Signed-off-by: anessi <16045045+anessi@users.noreply.github.com>pull/12743/head
parent
ff03c66d44
commit
acf7158565
@ -0,0 +1,7 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
description: Empty testing chart
|
||||||
|
home: https://k8s.io/helm
|
||||||
|
name: empty
|
||||||
|
sources:
|
||||||
|
- https://github.com/kubernetes/helm
|
||||||
|
version: 0.1.0
|
@ -0,0 +1 @@
|
|||||||
|
# This file is intentionally blank
|
@ -0,0 +1,67 @@
|
|||||||
|
{
|
||||||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||||
|
"properties": {
|
||||||
|
"addresses": {
|
||||||
|
"description": "List of addresses",
|
||||||
|
"items": {
|
||||||
|
"properties": {
|
||||||
|
"city": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"number": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"street": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": "object"
|
||||||
|
},
|
||||||
|
"type": "array"
|
||||||
|
},
|
||||||
|
"age": {
|
||||||
|
"description": "Age",
|
||||||
|
"minimum": 0,
|
||||||
|
"type": "integer"
|
||||||
|
},
|
||||||
|
"employmentInfo": {
|
||||||
|
"properties": {
|
||||||
|
"salary": {
|
||||||
|
"minimum": 0,
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"salary"
|
||||||
|
],
|
||||||
|
"type": "object"
|
||||||
|
},
|
||||||
|
"firstname": {
|
||||||
|
"description": "First name",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"lastname": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"likesCoffee": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"phoneNumbers": {
|
||||||
|
"items": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"type": "array"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"firstname",
|
||||||
|
"lastname",
|
||||||
|
"addresses",
|
||||||
|
"employmentInfo"
|
||||||
|
],
|
||||||
|
"title": "Values",
|
||||||
|
"type": "object"
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
firstname: John
|
||||||
|
lastname: Doe
|
||||||
|
age: -5
|
||||||
|
likesCoffee: true
|
||||||
|
addresses:
|
||||||
|
- city: Springfield
|
||||||
|
street: Main
|
||||||
|
number: 12345
|
||||||
|
- city: New York
|
||||||
|
street: Broadway
|
||||||
|
number: 67890
|
||||||
|
phoneNumbers:
|
||||||
|
- "(888) 888-8888"
|
||||||
|
- "(555) 555-5555"
|
Loading…
Reference in new issue