mirror of
https://github.com/helm/helm.git
synced 2026-02-03 20:39:45 -05:00
This change adds v3 charts. The code for the chart, including a loader, is present. It is based on v2 charts as a starting point. Note, this change does not make the charts available for use with Helm CLI commands or the action package. That will be in follow-up changes. Signed-off-by: Matt Farina <matt.farina@suse.com>
67 lines
1.2 KiB
JSON
67 lines
1.2 KiB
JSON
{
|
|
"$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"
|
|
}
|