-
Notifications
You must be signed in to change notification settings - Fork 0
/
pipeline-config.json
82 lines (76 loc) · 1.69 KB
/
pipeline-config.json
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
{
"externalConfig":
{
"branch": "master",
"credentials": "iamp-jenkins-github"
},
"ciConfig":
{
"stages":
{
"codeSecurityStage":
{
"id": "security",
"enable": false
},
"codeBuildStage":
{
"enable": true,
"id": "build",
"name": "Build",
"engine":
{
"type": "maven",
"configDir": "external-config/build/maven"
}
},
"codeArchiveStage":
{
"enable": true,
"id": "archive",
"engine":
{
"credentials": "iamp-jenkins-nexus"
}
}
}
},
"cdConfig":
{
"deployments":
{
"ocpDevDeployment":
{
"env": "dev",
"cloudProvider": "ocp",
"project": "ag-pssg-is-dev",
"type": "recreate",
"replicas": "1",
},
"ocpTestDeployment":
{
"env": "test",
"cloudProvider": "ocp",
"project": "ag-pssg-is-test",
"type": "blue-green",
"replicas": "2",
"providerConfig":
{
"autoScaling":
{
"id": "autoscaling",
"type": "config",
"enabled": "true"
}
}
},
"ocpProdDeployment":
{
"env": "prod",
"cloudProvider": "ocp",
"project": "ag-pssg-is-prod",
"enable": false
}
}
}
}