screwdriver-data-schema 21.16.1 → 21.17.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.
Files changed (2) hide show
  1. package/config/provider.js +14 -2
  2. package/package.json +1 -1
@@ -69,8 +69,20 @@ const SCHEMA_PROVIDER = Joi.object().keys({
69
69
  .example('eks'),
70
70
  clusterName: Joi.string()
71
71
  .max(128)
72
- .description('Cluster name')
73
- .example('sd-build-eks')
72
+ .description('Cluster name required if executor is eks')
73
+ .example('sd-build-eks'),
74
+ executorLogs: Joi.boolean()
75
+ .optional()
76
+ .description('Enable debug logs for executor codebuild'),
77
+ launcherImage: Joi.string()
78
+ .description('Screwdriver launcher image in user Registry')
79
+ .example('123456789012.dkr.ecr.us-east-2.amazonaws.com/screwdriver-hub:launcherv6.4'),
80
+ launcherVersion: Joi.string()
81
+ .description('Screwdriver launcher version')
82
+ .example('v6.4'),
83
+ privilegedMode: Joi.boolean()
84
+ .optional()
85
+ .description('Enable privileged mode for container')
74
86
  });
75
87
 
76
88
  module.exports = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "screwdriver-data-schema",
3
- "version": "21.16.1",
3
+ "version": "21.17.0",
4
4
  "description": "Internal Data Schema of Screwdriver",
5
5
  "main": "index.js",
6
6
  "scripts": {