forked from SchemaStore/schemastore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chart-lock.json
42 lines (42 loc) · 1.41 KB
/
chart-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"generated": {
"description": "Generated is the date the lock file was last generated.",
"type": "string",
"format": "date-time"
},
"digest": {
"description": "Digest is a hash of the dependencies in Chart.yaml.",
"type": "string"
},
"dependencies": {
"type": "array",
"description": "In Helm, one chart may depend on any number of other charts. These dependencies can be dynamically linked using the dependencies field in Chart.yaml or brought in to the charts/ directory and managed manually.\nThe charts required by the current chart are defined as a list in the dependencies field.",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["name", "version", "repository"],
"properties": {
"name": {
"description": "The name of the chart",
"type": "string"
},
"version": {
"description": "The version of the chart",
"type": "string"
},
"repository": {
"description": "The repository URL or alias",
"type": "string",
"format": "uri"
}
}
}
}
},
"required": ["generated", "digest", "dependencies"],
"title": "Helm Chart.lock",
"type": "object"
}