forked from SchemaStore/schemastore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbxci.schema-2.x.json
More file actions
575 lines (575 loc) · 18 KB
/
bxci.schema-2.x.json
File metadata and controls
575 lines (575 loc) · 18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"branchPattern": {
"description": "Regular expression for validating branch names",
"type": "string"
},
"timeout": {
"description": "Timeout in seconds",
"type": "integer"
},
"credentials": {
"description": "Jenkins credentials ID",
"type": "string"
},
"binaryRepository": {
"type": "object",
"description": "Binary repository details",
"properties": {
"address": {
"type": "string",
"format": "uri",
"description": "Repository URL"
},
"credentials": {
"$ref": "#/definitions/credentials",
"description": "Jenkins credentials ID for connecting to this repository"
}
},
"additionalProperties": false,
"required": ["address", "credentials"]
},
"checkmarx": {
"type": "object",
"title": "CheckMarx",
"properties": {
"enabled": {
"type": "boolean",
"default": false,
"description": "Sets whether the scan should be run"
},
"branch_pattern": {
"$ref": "#/definitions/branchPattern",
"description": "Specifies in which branches this stage will be executed"
},
"groupId": {
"type": "string",
"default": "55",
"description": "Fully qualified team name for the project"
},
"preset": {
"type": "string",
"default": "36",
"description": "Scan preset for the project"
},
"sourceEncoding": {
"type": "string",
"default": "5",
"description": "Language encoding ID associated to the source code character encoding (5: Multi-Language Scan)"
},
"serverUrl": {
"type": "string",
"default": "http://cxpbgmgmtserver/",
"description": "Checkmarx Server URL or IP address"
},
"credentialsId": {
"type": "string",
"default": "BB-Checkmarx",
"description": "Jenkins credentials ID"
},
"isProxy": {
"type": "boolean",
"default": false
},
"useOwnServerCredentials": {
"type": "boolean",
"default": true,
"description": "Enables the use of the default server credentials or disables and provides server and credentials that override the defaults"
},
"projectName": {
"type": "string",
"description": "Unique project name. Will be inferred from the repository name if not provided"
},
"exclusionsSetting": {
"enum": ["job", "global"],
"default": "job",
"description": "Specifies which exclusions settings to use: global (Jenkins global settings) or job (current pipeline)"
},
"excludeFolders": {
"type": "string",
"description": "Comma separated list of folders to be excluded from the CxSAST scan",
"examples": ["folder-1, folder-2, folder-3"]
},
"filterPattern": {
"type": "string",
"description": "Defines the include/exclude wildcard patterns. Does not have effect when \"exclusionsSetting\" is set to \"global\"",
"examples": [
"\"!**/_cvs/**/*, !**/.svn/**/*, !**/.hg/**/*, !**/.git/**/*\""
]
},
"hideDebugLogs": {
"type": "boolean",
"default": true,
"description": "Sets whether debug logs are visible in the job output"
}
},
"additionalProperties": false
},
"sonar": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"default": true
},
"breaks_build": {
"type": "boolean",
"description": "Waits for analysis result and breaks the build when the project fails for some quality gates.",
"default": false
},
"timeout": {
"$ref": "#/definitions/timeout",
"description": "Seconds to wait for the result of the quality gate. Only applies when breaks_build is set to true",
"default": 120
}
},
"additionalProperties": false
},
"stage": {
"type": "object",
"properties": {
"steps": {
"type": "array",
"description": "List of steps to run"
},
"when": {
"type": "object",
"description": "Condition that should be met to run this step",
"properties": {
"branch": {
"$ref": "#/definitions/branchPattern",
"description": "Specifies in which branches this stage will be executed"
}
}
}
},
"required": ["steps"],
"additionalProperties": false
},
"releaseChannel": {
"type": "string",
"description": "Release channel name"
},
"releaseChannelBranch": {
"$ref": "#/definitions/branchPattern",
"description": "Indicates on which branches the artifact will be published."
},
"dockerfile": {
"description": "Dockerfile path",
"type": "string"
},
"outputDocker": {
"type": "object",
"properties": {
"dockerfile": {
"$ref": "#/definitions/dockerfile",
"description": "Path to Dockerfile used to generate the docker image"
},
"image_name": {
"type": "string",
"description": "Image name for the generated docker image. Cannot include tag. Tag will be automatically generated based on project version."
},
"publish": {
"$ref": "#/definitions/outputDockerPublish",
"description": "Docker publishing information. If not present, no images will be published"
},
"vulnerability_scan": {
"type": "object",
"description": "Configuration for running vulnerability scans on published Docker images",
"title": "Vulnerability scan",
"properties": {
"enabled": {
"type": "boolean",
"default": true,
"description": "Whether the vulnerability scan step should be run"
}
},
"additionalProperties": false
}
},
"required": ["dockerfile", "image_name"],
"additionalProperties": false
},
"outputDockerPublish": {
"type": "array",
"items": {
"$ref": "#/definitions/dockerReleaseChannel"
}
},
"dockerReleaseChannel": {
"type": "object",
"properties": {
"channel": {
"$ref": "#/definitions/releaseChannel"
},
"branch": {
"$ref": "#/definitions/releaseChannelBranch"
},
"registry": {
"type": "string",
"description": "Docker registry. Must include protocol (http|https) and port",
"format": "uri"
},
"credentials": {
"$ref": "#/definitions/credentials",
"description": "Jenkins credentials ID for publishing into the specified Docker registry"
}
},
"required": ["channel", "branch", "registry", "credentials"],
"additionalProperties": false
},
"outputHelm": {
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "Path to the folder with all required chart config files"
},
"updates": {
"type": "array",
"description": "Updates that must be done before packing Helm chart. It's a list of objects that specifies which updates must be done on which files",
"items": {
"$ref": "#/definitions/outputHelmUpdates"
}
},
"publish": {
"$ref": "#/definitions/outputHelmPublish",
"description": "Helm chart publishing configuration. If not present, no charts will be published"
}
},
"required": ["path", "publish", "updates"],
"additionalProperties": false
},
"outputHelmUpdates": {
"type": "object",
"additionalProperties": false,
"properties": {
"file": {
"type": "string",
"description": "Name (including path from Helm object path) of the file to be updated. Only supports yaml files"
},
"properties": {
"type": "array",
"description": "A list of properties to update. It can be updated with a fixed value or environment variable",
"items": {
"$ref": "#/definitions/outputHelmUpdatesProperties"
}
}
},
"required": ["file", "properties"]
},
"outputHelmUpdatesProperties": {
"type": "object",
"additionalProperties": false,
"properties": {
"key": {
"type": "string",
"description": "Yaml property (full path) to be updated"
},
"env": {
"type": "string",
"pattern": "^[A-Za-z_][A-Za-z0-9_]*$",
"description": "Environment variable whose value will be used to update the property"
},
"value": {
"type": "string",
"description": "Value to update the given property"
}
},
"required": ["key"],
"oneOf": [
{
"required": ["env"],
"not": {
"required": ["value"]
}
},
{
"required": ["value"],
"not": {
"required": ["env"]
}
}
]
},
"outputHelmPublish": {
"type": "array",
"items": {
"$ref": "#/definitions/helmReleaseChannel"
}
},
"helmReleaseChannel": {
"type": "object",
"properties": {
"channel": {
"$ref": "#/definitions/releaseChannel"
},
"branch": {
"$ref": "#/definitions/releaseChannelBranch"
},
"repository": {
"type": "string",
"format": "uri",
"description": "Helm chart repository. Must include protocol, host, port (if needed) and path"
},
"credentials": {
"$ref": "#/definitions/credentials",
"description": "Jenkins credentials Id for this repository for uploading the chart"
}
},
"required": ["channel", "branch", "repository", "credentials"],
"additionalProperties": false
},
"outputPackage": {
"type": "object",
"properties": {
"publish": {
"$ref": "#/definitions/outputPackagePublish",
"description": "Package publish configuration."
}
},
"required": ["publish"],
"additionalProperties": false
},
"outputPackagePublish": {
"type": "array",
"items": {
"$ref": "#/definitions/packagePublishChannel"
}
},
"packagePublishChannel": {
"type": "object",
"properties": {
"channel": {
"$ref": "#/definitions/releaseChannel"
},
"branch": {
"$ref": "#/definitions/releaseChannelBranch"
},
"registry": {
"type": "string",
"description": "NPM registry (env variable or registry URL)",
"examples": [
"NPM_PUBLISH_REGISTRY",
"NPM_SNAPSHOT_REGISTRY",
"https://registry.npmjs.org"
]
},
"params": {
"type": "string",
"description": "Optional params for npm publish or mvn deploy command.",
"examples": ["--tag latest", "-Dmaven.test.skip=true"]
}
},
"required": ["channel", "branch"],
"additionalProperties": false
},
"cacheItem": {
"type": "object",
"properties": {
"type": {
"enum": ["maven", "npm"],
"description": "Cache type",
"default": "maven"
},
"enabled": {
"type": "boolean",
"description": "Sets whether this cache type is enabled",
"default": false
},
"source": {
"type": "string",
"description": "Location of the cache in the Jenkins workspace",
"default": ".ci-cache/<type>"
},
"target": {
"type": "string",
"description": "Location of the cache directory inside the Docker container",
"default": "/container-path/directory"
}
},
"additionalProperties": false,
"required": ["type", "enabled"]
}
},
"description": "CI configuration for Amdocs Bill Experience projects",
"properties": {
"project": {
"description": "Project properties",
"type": "object",
"properties": {
"name": {
"description": "Project's name (used by Jenkins, Docker and Sonar)",
"type": "string"
},
"type": {
"description": "Project type",
"enum": ["npm", "maven", "mvn"],
"default": "mvn"
},
"settings": {
"description": "ID of a managed maven or npm Jenkins file",
"type": "string",
"examples": ["bx-maven-settings", "bx-npm-settings"]
}
},
"additionalProperties": false
},
"config": {
"type": "object",
"properties": {
"jenkins_runtime": {
"type": "object",
"properties": {
"docker": {
"type": "object",
"description": "Specifies how to build the Docker container (from an existing image or from a local Dockerfile)",
"properties": {
"image": {
"description": "Prebuilt Docker image (has precedence over dockerfile)",
"type": "string",
"examples": ["remote-host.com/image-name:tag"]
},
"dockerfile": {
"description": "Path to a local Dockerfile",
"$ref": "#/definitions/dockerfile",
"examples": [".ci/Dockerfile"]
}
},
"additionalProperties": false
}
},
"additionalProperties": false,
"required": ["docker"]
},
"branch": {
"type": "object",
"description": "Describes on which branch names a build will be run",
"properties": {
"branch_pattern": {
"$ref": "#/definitions/branchPattern"
},
"disable_validation": {
"description": "Disables branch name validation",
"type": "boolean",
"default": false
}
},
"additionalProperties": false
},
"build": {
"type": "object",
"properties": {
"clean_workspace_after_run": {
"type": "boolean",
"description": "Whether Jenkins workspace should be cleaned after the build",
"default": true
},
"checkmarx": {
"$ref": "#/definitions/checkmarx",
"description": "Adds a Static Analysis stage for CheckMarx. See https://www.jenkins.io/doc/pipeline/steps/checkmarx/ for all the configuration options."
},
"static_analysis": {
"$ref": "#/definitions/sonar",
"description": "Adds a Static Analysis stage for Sonar."
}
},
"additionalProperties": false
},
"cache": {
"type": "object",
"description": "Cache configuration for projects built inside Docker containers",
"properties": {
"repository": {
"$ref": "#/definitions/binaryRepository"
},
"items": {
"type": "array",
"description": "List of cache types",
"items": {
"$ref": "#/definitions/cacheItem"
}
}
},
"additionalProperties": false,
"required": ["repository"]
}
},
"additionalProperties": false
},
"services": {
"type": "array",
"description": "Additional services required by the project or application.",
"items": {
"enum": [
"Postgres",
"Postgis",
"Redis",
"Mssql",
"Mysql",
"Mongodb",
"Elasticsearch"
]
},
"uniqueItems": true
},
"environment": {
"type": "object",
"description": "Custom environment variables to be added to the pipeline",
"propertyNames": {
"pattern": "^[A-Za-z_][A-Za-z0-9_]*$"
}
},
"jenkinsEnvironment": {
"type": "array",
"description": "Jenkins environment variables that are passed to the Docker container",
"uniqueItems": true,
"items": {
"pattern": "^[A-Za-z_][A-Za-z0-9_]*$",
"type": "string"
}
},
"stages": {
"type": "object",
"description": "Defines the stages and steps required to build the project.",
"patternProperties": {
"^\\w+( \\w+)*$": {
"$ref": "#/definitions/stage",
"description": "Stage name in the Jenkins pipeline"
}
}
},
"output": {
"type": "object",
"description": "Describes artifacts generated after all the stages have been run",
"properties": {
"package": {
"$ref": "#/definitions/outputPackage",
"description": "Configuration for publishing NPM or Maven packages"
},
"docker": {
"$ref": "#/definitions/outputDocker",
"description": "Configuration for generating a Docker image"
},
"helm": {
"$ref": "#/definitions/outputHelm",
"description": "Configuration for generating a Helm chart"
}
},
"additionalProperties": false
},
"archive": {
"type": "array",
"description": "List of artifacts to archive (wildcards allowed). Check out https://www.jenkins.io/doc/pipeline/steps/core/#archiveartifacts-archive-the-artifacts",
"examples": ["target/*.jar", "**/*.jar", "target/out.txt"]
},
"timeout": {
"$ref": "#/definitions/timeout",
"description": "Build timeout in seconds",
"default": 600
}
},
"required": ["project", "stages"],
"type": "object"
}