screwdriver-data-schema 25.8.0 → 25.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/annotations.js +3 -0
- package/config/base.js +2 -1
- package/package.json +1 -1
package/config/annotations.js
CHANGED
|
@@ -19,6 +19,9 @@ const RESERVED_JOB_ANNOTATIONS = [
|
|
|
19
19
|
'screwdriver.cd/dockerEnabled',
|
|
20
20
|
'screwdriver.cd/dockerCpu',
|
|
21
21
|
'screwdriver.cd/dockerRam',
|
|
22
|
+
'screwdriver.cd/rootlessBuildkitEnabled',
|
|
23
|
+
'screwdriver.cd/buildkitCpu',
|
|
24
|
+
'screwdriver.cd/buildkitRam',
|
|
22
25
|
'screwdriver.cd/coverageScope',
|
|
23
26
|
'screwdriver.cd/terminationGracePeriodSeconds',
|
|
24
27
|
'screwdriver.cd/displayName',
|
package/config/base.js
CHANGED
|
@@ -69,7 +69,8 @@ const ALLOWED_JOB_FIELDS_WITH_PIPELINE_TEMPLATE = Joi.object().keys({
|
|
|
69
69
|
image: Job.image,
|
|
70
70
|
environment: Job.environment,
|
|
71
71
|
settings: Job.settings,
|
|
72
|
-
requires: Job.requires
|
|
72
|
+
requires: Job.requires,
|
|
73
|
+
sourcePaths: Job.sourcePaths
|
|
73
74
|
});
|
|
74
75
|
|
|
75
76
|
const SCHEMA_CONFIG_PRE_TEMPLATE_MERGE = Joi.object()
|