Skip to content

Commit f2cbfcb

Browse files
committed
ENH: Add new resource attributes to schema
skipci
1 parent e103bec commit f2cbfcb

File tree

1 file changed

+26
-6
lines changed

1 file changed

+26
-6
lines changed

octue/cloud/events/validation.py

+26-6
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,6 @@
5959
"type": "string",
6060
"description": "The UUID of the ultimate question that triggered this tree of questions.",
6161
},
62-
"forward_logs": {"type": "boolean"},
63-
"save_diagnostics": {
64-
"enum": ["SAVE_DIAGNOSTICS_OFF", "SAVE_DIAGNOSTICS_ON_CRASH", "SAVE_DIAGNOSTICS_ON"]
65-
},
6662
"parent": {
6763
"type": "string",
6864
"description": "The service revision unique identifier (SRUID) of the parent that asked the question this event is related to.",
@@ -97,21 +93,45 @@
9793
"description": "The retry count for the question. All events related to the retry of a given question will have the same retry count. A question that is being asked for the first time will have a retry count of 0.",
9894
"minimum": 0,
9995
},
96+
"forward_logs": {
97+
"type": "boolean",
98+
"description": "If `True`, forward any logs from the child to the parent and handle them with the local log handlers",
99+
},
100+
"save_diagnostics": {
101+
"type": "string",
102+
"enum": ["SAVE_DIAGNOSTICS_OFF", "SAVE_DIAGNOSTICS_ON_CRASH", "SAVE_DIAGNOSTICS_ON"],
103+
"description": "If turned on, allow the input values and manifest (and its datasets) to be saved either all the time or just if the analysis fails",
104+
},
105+
"cpus": {
106+
"type": "integer",
107+
"minimum": 1,
108+
"description": "The number of CPUs to request for the question; defaults to the number set by the child service",
109+
},
110+
"memory": {
111+
"type": "string",
112+
"description": "The amount of memory to request for the question; defaults to the amount set by the child service",
113+
"examples": ["256Mi", "1Gi"],
114+
},
115+
"ephemeral_storage": {
116+
"type": "string",
117+
"description": "The amount of ephemeral storage to request for the question; defaults to the amount set by the child service",
118+
"examples": ["256Mi", "1Gi"],
119+
},
100120
},
101121
"required": [
102122
"datetime",
103123
"uuid",
104124
"question_uuid",
105125
"originator_question_uuid",
106-
"forward_logs",
107-
"save_diagnostics",
108126
"parent",
109127
"originator",
110128
"sender",
111129
"sender_type",
112130
"sender_sdk_version",
113131
"recipient",
114132
"retry_count",
133+
"forward_logs",
134+
"save_diagnostics",
115135
],
116136
},
117137
{

0 commit comments

Comments
 (0)