-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathelement-web.json
56 lines (56 loc) · 1.29 KB
/
element-web.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
{
"$id": "file://element-web",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
},
"additional": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"replicas": {
"minimum": 1,
"type": "integer"
},
"image": {
"$ref": "file://common/image.json"
},
"ingress": {
"$ref": "file://common/ingress.json"
},
"labels": {
"$ref": "file://common/labels.json"
},
"annotations": {
"$ref": "file://common/workloadAnnotations.json"
},
"extraEnv": {
"$ref": "file://common/extraEnv.json"
},
"containersSecurityContext": {
"$ref": "file://common/containersSecurityContext.json"
},
"nodeSelector": {
"$ref": "file://common/nodeSelector.json"
},
"podSecurityContext": {
"$ref": "file://common/podSecurityContext.json"
},
"resources": {
"$ref": "file://common/resources.json"
},
"serviceAccount": {
"$ref": "file://common/serviceAccount.json"
},
"tolerations": {
"$ref": "file://common/tolerations.json"
},
"topologySpreadConstraints": {
"$ref": "file://common/topologySpreadConstraints.json"
}
}
}