-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.schema.json
More file actions
84 lines (84 loc) · 3.27 KB
/
values.schema.json
File metadata and controls
84 lines (84 loc) · 3.27 KB
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
{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"properties": {
"builds": {
"type": "object",
"properties": {
"enable": {
"default": "true",
"title": "Enable Builds",
"description": "Build images or use existing images",
"type": "boolean"
},
"client": {
"title": "Client Git",
"description": "Client git properties for build",
"type": "object",
"properties": {
"contextDir": {
"default": "/",
"title": "Context Directory",
"description": "Context directory in git",
"type": "string"
},
"url": {
"default": "https://github.com/gnunn-gitops/product-catalog-client",
"title": "Git Repository URL",
"description": "URL of the git repository",
"type": "string"
},
"revision": {
"default": "master",
"title": "Git Revision",
"description": "Revision in git",
"type": "string"
}
}
},
"server": {
"title": "Server Git",
"description": "Server git properties for build",
"type": "object",
"properties": {
"contextDir": {
"default": "/",
"title": "Context Directory",
"description": "Context directory in git",
"type": "string"
},
"url": {
"default": "https://github.com/gnunn-gitops/product-catalog-server",
"title": "Git Repository URL",
"description": "URL of the git repository",
"type": "string"
},
"revision": {
"default": "master",
"title": "Git Revision",
"description": "Revision in git",
"type": "string"
}
}
}
}
},
"replicas": {
"type": "object",
"properties": {
"clientCount": {
"default": 1,
"title": "Client Replicas",
"description": "Number of replicas for client deployment",
"type": "integer"
},
"serverCount": {
"default": 1,
"title": "Server Replicas",
"description": "Number of replicas for server deployment",
"type": "integer"
}
}
}
}
}