-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvalues.schema.json
53 lines (53 loc) · 1.55 KB
/
values.schema.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
43
44
45
46
47
48
49
50
51
52
53
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "http://example.com/example.json",
"type": "object",
"title": "OliveTin-HelmChart schema for values.yaml",
"description": "The root schema comprises the entire JSON document.",
"default": {},
"required": [
"ingress"
],
"properties": {
"ingress": {
"$id": "#/properties/ingress",
"type": "object",
"title": "Options for controlling ingress",
"description": "A Kubernetes Ingress resource is a easy way to allow users from outside the cluster to connect to the OliveTin web interface and API.",
"examples": [
{
"enabled": true,
"host": "olivetin.example.com"
}
],
"required": [
"enabled",
"host"
],
"properties": {
"enabled": {
"$id": "#/properties/ingress/properties/enabled",
"type": "boolean",
"title": "Should this helm chart create an Ingress resource?",
"description": "Ingress is a quick and easy way to connect to OliveTin, but you may prefer no direct access, or by using a LoadBalancer service instead.",
"default": true,
"examples": [
true
]
},
"host": {
"$id": "#/properties/ingress/properties/host",
"type": "string",
"title": "What hostname do you want to use to connect to OliveTin?",
"description": "This is set as a 'Host' rule inside the Ingress resource.",
"default": "olivetin.example.com",
"examples": [
"olivetin.example.com"
]
}
},
"additionalProperties": true
}
},
"additionalProperties": true
}