You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: platform.schema.json
+18-9Lines changed: 18 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,8 @@
5
5
"AutoDelete": {
6
6
"properties": {
7
7
"afterInactivity": {
8
-
"type": "integer"
8
+
"type": "integer",
9
+
"description": "AfterInactivity specifies after how many seconds of inactivity the virtual cluster be deleted\n+optional"
9
10
}
10
11
},
11
12
"additionalProperties": false,
@@ -14,16 +15,20 @@
14
15
"AutoSleep": {
15
16
"properties": {
16
17
"afterInactivity": {
17
-
"type": "integer"
18
+
"type": "integer",
19
+
"description": "AfterInactivity specifies after how many seconds of inactivity the virtual cluster should sleep\n+optional"
18
20
},
19
21
"schedule": {
20
-
"type": "string"
22
+
"type": "string",
23
+
"description": "Schedule specifies scheduled virtual cluster sleep in Cron format, see https://en.wikipedia.org/wiki/Cron.\nNote: timezone defined in the schedule string will be ignored. Use \".Timezone\" field instead.\n+optional"
21
24
},
22
25
"timezone": {
23
-
"type": "string"
26
+
"type": "string",
27
+
"description": "Timezone specifies time zone used for scheduled virtual cluster operations. Defaults to UTC.\nAccepts the same format as time.LoadLocation() in Go (https://pkg.go.dev/time#LoadLocation).\nThe value should be a location name corresponding to a file in the IANA Time Zone database, such as \"America/New_York\".\n+optional"
24
28
},
25
29
"autoWakeup": {
26
-
"$ref": "#/$defs/AutoWakeup"
30
+
"$ref": "#/$defs/AutoWakeup",
31
+
"description": "AutoSleep holds configuration for automatic wakeup\n+optional"
27
32
}
28
33
},
29
34
"additionalProperties": false,
@@ -32,7 +37,8 @@
32
37
"AutoWakeup": {
33
38
"properties": {
34
39
"schedule": {
35
-
"type": "string"
40
+
"type": "string",
41
+
"description": "Schedule specifies scheduled wakeup from sleep in Cron format, see https://en.wikipedia.org/wiki/Cron.\nNote: timezone defined in the schedule string will be ignored. The timezone for the autoSleep schedule will be\nused\n+optional"
36
42
}
37
43
},
38
44
"additionalProperties": false,
@@ -41,12 +47,15 @@
41
47
},
42
48
"properties": {
43
49
"autoSleep": {
44
-
"$ref": "#/$defs/AutoSleep"
50
+
"$ref": "#/$defs/AutoSleep",
51
+
"description": "AutoSleep holds configuration for automatic sleep and wakeup\n+optional"
45
52
},
46
53
"autoDelete": {
47
-
"$ref": "#/$defs/AutoDelete"
54
+
"$ref": "#/$defs/AutoDelete",
55
+
"description": "AutoDelete holds configuration for automatic delete\n+optional"
48
56
}
49
57
},
50
58
"additionalProperties": false,
51
-
"type": "object"
59
+
"type": "object",
60
+
"description": "PlatformConfig describes platform configuration for a vCluster."
0 commit comments