Skip to content

Commit 28d2cb6

Browse files
committed
feat: add values schemas
1 parent c8f9a48 commit 28d2cb6

File tree

2 files changed

+4438
-0
lines changed

2 files changed

+4438
-0
lines changed
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"$schema": "https://json-schema.org/draft/2020-12/schema#",
3+
"type": "object",
4+
"properties": {
5+
"image": {
6+
"type": "object",
7+
"properties": {
8+
"pullPolicy": {
9+
"type": "string"
10+
},
11+
"repository": {
12+
"type": "string"
13+
},
14+
"tag": {
15+
"type": "string"
16+
}
17+
}
18+
},
19+
"podAnnotations": {
20+
"type": "object"
21+
},
22+
"podLabels": {
23+
"type": "object"
24+
},
25+
"rbac": {
26+
"type": "object",
27+
"properties": {
28+
"create": {
29+
"type": "boolean"
30+
}
31+
}
32+
},
33+
"resources": {
34+
"type": "object"
35+
},
36+
"sentry": {
37+
"type": "object",
38+
"properties": {
39+
"dsn": {
40+
"type": "string"
41+
}
42+
}
43+
},
44+
"serviceAccount": {
45+
"type": "object",
46+
"properties": {
47+
"create": {
48+
"type": "boolean"
49+
},
50+
"name": {
51+
"type": "null"
52+
}
53+
}
54+
}
55+
}
56+
}

0 commit comments

Comments
 (0)