Skip to content

Commit 06a8c28

Browse files
authored
Add all allowable properties on nodegroup
1 parent d94f96a commit 06a8c28

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

files/nodegroup.schema

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
{
2-
"$schema": "https://json-schema.org/draft/2020-12/schema",
1+
{ "$schema": "https://json-schema.org/draft/2020-12/schema",
32
"type": "object",
43
"definitions": {
54
"gres": {
@@ -27,6 +26,21 @@
2726
"type": "string",
2827
"minLength": 1
2928
},
29+
"ram_mb": {
30+
"type": "number",
31+
},
32+
"ram_multiplier": {
33+
"type": "number",
34+
},
35+
"features": {
36+
"type": "array",
37+
"items": {
38+
"type": "string"
39+
}
40+
},
41+
"node_params": {
42+
"type": "object",
43+
},
3044
"gres_autodetect": {
3145
"type": "string",
3246
"minLength": 1
@@ -38,6 +52,7 @@
3852
"required": [
3953
"name"
4054
],
55+
"additionalProperties": false,
4156
"if": {
4257
"properties": {
4358
"gres_autodetect": {

0 commit comments

Comments
 (0)