-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.schema.json
86 lines (85 loc) · 2.04 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/manisha-tanwar/helm-appTemplate/main/values.schema.json",
"type": "object",
"properties": {
"global": {
"type": "object",
"properties": {
"annotations": {
"$ref": "schemas/definitions.json#/annotations"
},
"nameOverride": {
"type": ["string", "null"]
},
"fullnameOverride": {
"type": ["string", "null"]
},
"labels": {
"$ref": "schemas/definitions.json#/labels"
}
}
},
"defaultPodOptions": {
"$ref": "schemas/pod.json#/options"
},
"controllers": {
"additionalProperties": {
"$ref": "schemas/controllers.json#/instance"
}
},
"serviceAccount": {
"$ref": "schemas/serviceAccount.json#/settings"
},
"configMaps": {
"additionalProperties": {
"$ref": "schemas/configmap.json#/instance"
}
},
"secrets": {
"additionalProperties": {
"$ref": "schemas/secret.json#/instance"
}
},
"ingress": {
"additionalProperties": {
"$ref": "schemas/ingress.json#/instance"
}
},
"route": {
"additionalProperties": {
"$ref": "schemas/route.json#/instance"
}
},
"service": {
"additionalProperties": {
"$ref": "schemas/service.json#/instance"
}
},
"serviceMonitor": {
"additionalProperties": {
"$ref": "schemas/serviceMonitor.json#/instance"
}
},
"networkpolicies": {
"additionalProperties": {
"$ref": "schemas/networkpolicy.json#/instance"
}
},
"persistence": {
"additionalProperties": {
"$ref": "schemas/persistence.json#/item"
}
},
"secretProviderClass": {
"additionalProperties": {
"$ref": "schemas/secretProviderClass.json#/instance"
}
},
"rawResources": {
"additionalProperties": {
"$ref": "schemas/rawResource.json#/instance"
}
}
}
}