Skip to content

Commit 021f4f2

Browse files
committed
fix: schema updated with missing values
Signed-off-by: Ankit Pati <ankit.pati@salesforce.com>
1 parent ae713b4 commit 021f4f2

1 file changed

Lines changed: 57 additions & 0 deletions

File tree

valkey/values.schema.json

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,52 @@
2222
}
2323
}
2424
},
25+
"cluster": {
26+
"type": "object",
27+
"properties": {
28+
"enabled": {
29+
"type": "boolean"
30+
},
31+
"shards": {
32+
"type": "integer"
33+
},
34+
"replicasPerShard": {
35+
"type": "integer"
36+
},
37+
"replicationUser": {
38+
"type": "string"
39+
},
40+
"nodeTimeout": {
41+
"type": "integer"
42+
},
43+
"requireFullCoverage": {
44+
"type": "boolean"
45+
},
46+
"allowReadsWhenDown": {
47+
"type": "boolean"
48+
},
49+
"persistence": {
50+
"type": "object",
51+
"properties": {
52+
"size": {
53+
"type": "string"
54+
},
55+
"storageClass": {
56+
"type": "string"
57+
},
58+
"accessModes": {
59+
"type": "array",
60+
"items": {
61+
"type": "string"
62+
}
63+
}
64+
}
65+
},
66+
"busPort": {
67+
"type": "integer"
68+
}
69+
}
70+
},
2571
"clusterDomain": {
2672
"type": "string"
2773
},
@@ -347,6 +393,14 @@
347393
},
348394
"runAsUser": {
349395
"type": "integer"
396+
},
397+
"seccompProfile": {
398+
"type": "object",
399+
"properties": {
400+
"type": {
401+
"type": "string"
402+
}
403+
}
350404
}
351405
}
352406
},
@@ -441,6 +495,9 @@
441495
"securityContext": {
442496
"type": "object",
443497
"properties": {
498+
"allowPrivilegeEscalation": {
499+
"type": "boolean"
500+
},
444501
"capabilities": {
445502
"type": "object",
446503
"properties": {

0 commit comments

Comments
 (0)