-
Notifications
You must be signed in to change notification settings - Fork 6
/
values.schema.json
69 lines (69 loc) · 1.91 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
{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"properties": {
"database_service_name": {
"type": "string",
"pattern": "^[a-z0-9-_]+$"
},
"namespace": {
"type": "string"
},
"config": {
"type": "object",
"properties": {
"postgresql_database": {
"type": "string"
},
"postgresql_password": {
"type": "string"
},
"postgresql_user": {
"type": "string"
},
"port": {
"type": "integer"
}
}
},
"memory_limit": {
"type": "string",
"title": "Database memory limit",
"form": true,
"render": "slider",
"sliderMin": 512,
"sliderMax": 65536,
"sliderUnit": "Mi"
},
"image": {
"type": "object",
"properties": {
"tag": {
"type": "string",
"description": "Specify postgresql imagestream tag",
"enum": ["latest", "13-el9", "13-el8", "12-el8", "12" ]
}
}
},
"pvc": {
"type": "object",
"properties": {
"volume_capacity": {
"type": "string",
"title": "Persistent Volume Size",
"form": true,
"render": "slider",
"sliderMin": 1,
"sliderMax": 100,
"sliderUnit": "Gi"
},
"netapp_nfs": {
"type": "boolean"
},
"app_code": {
"type": "string"
}
}
}
}
}