forked from kubegems/appstore-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.schema.json
executable file
·87 lines (87 loc) · 2.12 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
87
{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"properties": {
"nameOverride": {
"type": "string",
"title": "Neo4j实例名",
"form": true
},
"fullnameOverride": {
"type": "string",
"title": "Neo4j服务名",
"form": true
},
"authEnabled": {
"type": "boolean",
"title": "启用访问认证",
"default": true,
"form": true
},
"neo4jPassword": {
"type": "string",
"title": "Neo4j访问密码",
"form": true,
"default": "cloud1688",
"hidden": {
"value": false,
"path": "authEnabled"
}
},
"useAPOC": {
"type": "boolean",
"title": "启用APOC,请参考https://neo4j.com/labs/apoc/",
"form": true,
"default": false
},
"core": {
"type": "object",
"title": "Neo4j核心服务配置",
"form": true,
"properties": {
"numberOfServers": {
"type": "integer",
"title": "Neo4j容器副本数",
"default": 1,
"form": true
},
"persistentVolume": {
"type": "object",
"title": "数据持久化设置",
"form": true,
"properties": {
"enable": {
"type": "boolean",
"title": "启用数据卷",
"form": true,
"default": true
},
"storageClass": {
"type": "string",
"title": "存储卷类型",
"form": true,
"hidden": {
"path": "core/persistentVolume/enabled",
"value": false
}
},
"size": {
"type": "string",
"title": "存储卷容量",
"form": true,
"render": "slider",
"sliderMin": 1,
"sliderMax": 100,
"sliderUnit": "Gi",
"default": "10Gi",
"hidden": {
"path": "core/persistentVolume/enabled",
"value": false
}
}
}
}
}
}
}
}