Skip to content

Commit 582b0ef

Browse files
authored
Merge pull request #1 from ferhatguneri/patch-1
Create values.schema.json
2 parents 1d9f89d + 1eb4af1 commit 582b0ef

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"$schema": "https://json-schema.org/draft-07/schema",
3+
"required": ["policyServer"],
4+
"properties": {
5+
"policyServer": {
6+
"type": "object",
7+
"properties": {
8+
"replicaCount": {
9+
"type": "number",
10+
"description": "Replica count of policyServer should be greater than 1",
11+
"exclusiveMinimum": 1
12+
}
13+
}
14+
}
15+
}
16+
}

0 commit comments

Comments
 (0)