-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathselect-artifact-type.yaml
58 lines (58 loc) · 1.83 KB
/
select-artifact-type.yaml
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
parameters:
- title: Artifact Information
description: Details on Artifact Information
type: object
properties:
artifact_type:
title: Select artifact type
type: object
properties:
select_artifact_type:
description: Choose the artifact you want to use from below drop down.
type: string
enum:
- Docker
- Zip
required:
- select_artifact_type
dependencies:
select_artifact_type:
oneOf:
- properties:
select_artifact_type:
description: Docker Artifact is Selected.
enum:
- Docker
DockerImage:
description: Choose this variable to select the docker image version.
type: string
enum:
- docker1
- docker2
- docker3
- docker4
- docker5
required:
- DockerImage
- properties:
select_artifact_type:
description: Zip Artifact is Selected.
enum:
- Zip
ZipImage:
description: Choose the ZipImage.
type: string
enum:
- zip1
- zip2
- zip3
- zip4
Packaging:
description: Choose the packaging type for Zip image.
type: string
enum:
- jar
- war
required:
- ZipImage
- Packaging