forked from kubegems/appstore-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.schema.json
73 lines (73 loc) · 1.69 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
{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"properties": {
"nameOverride": {
"type": "string",
"title": "kibana容器名",
"form": true
},
"fullnameOverride": {
"type": "string",
"title": "kibana服务名",
"form": true
},
"elasticsearchHosts": {
"type": "string",
"title": "ElasicSearch地址",
"form": true,
"default": "http://elasticsearch:9200"
},
"apmConfig": {
"type": "object",
"title": "apm配置文件",
"form": true,
"properties": {
"apm-server.yml": {
"type": "string",
"title": "apm-server配置",
"form": true,
"default": "配置请参考 https://github.com/elastic/helm-charts/blob/7.13/apm-server/values.yaml",
"render": "textArea"
}
}
},
"autoscaling": {
"enabled": {
"type": "boolean",
"title": "启用弹性伸缩",
"form": true
},
"averageCpuUtilization": {
"type": "integer",
"title": "CPU使用率阈值",
"form": true,
"default": 50,
"hidden": {
"path": "autoscaling/enabled",
"value": false
}
},
"minReplicas": {
"type": "integer",
"title": "最小副本",
"form": true,
"default": 1,
"hidden": {
"path": "autoscaling/enabled",
"value": false
}
},
"maxReplicas": {
"type": "integer",
"title": "最大副本",
"form": true,
"default": 3,
"hidden": {
"path": "autoscaling/enabled",
"value": false
}
}
}
}
}