-
Notifications
You must be signed in to change notification settings - Fork 77
/
.deployment.config.json
91 lines (91 loc) · 2.02 KB
/
.deployment.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
83
84
85
86
87
88
89
90
91
{
"product": "coveo-search-ui",
"team_name": "searchui",
"general": {
"aws_regions": {
"sequential": ["FIRST_MAIN_REGION"]
},
"environments_order": {
"sequential": ["dev", "stg", "prd"]
},
"team_jenkins": "searchuibuilds",
"start_environment_automatically": false,
"notifications": {
"slack_channels": ["#searchuibuilds"]
}
},
"ordered_phases": [
{
"id": "cdn",
"s3": {
"bucket": "{terraform.infra.infra.bucket_binaries}",
"directory": "proda/StaticCDN/searchui/v$[MAJOR_MINOR_VERSION]",
"source": "bin",
"parameters": {
"acl": "public-read"
}
}
},
{
"id": "cdn-sri",
"s3": {
"bucket": "{terraform.infra.infra.bucket_binaries}",
"directory": "proda/StaticCDN/searchui/v$[MAJOR_MINOR_VERSION]/$[PATCH_VERSION]",
"source": "bin",
"parameters": {
"acl": "public-read"
}
}
},
{
"id": "npm-latest-tag-updated",
"team_jenkins": {
"disabled": true,
"job_name": "search_ui/job/update_npm_latest_tag",
"extra_parameters": {
"LATEST_NPM_VERSION": "$[LATEST_NPM_VERSION]"
},
"prd": {
"disabled": false
}
}
},
{
"id": "prod-cloudfront-invalidation",
"team_jenkins": {
"disabled": true,
"job_name": "search_ui/job/cloudfront_invalidation",
"extra_parameters": {
"MAJOR_MINOR_VERSION": "$[MAJOR_MINOR_VERSION]"
},
"prd": {
"disabled": false
}
}
}
],
"certifiers": {
"stg": [
{
"system_certifier": "snyk"
},
{
"system_certifier": "snyk-code"
}
]
},
"snyk": {
"no_dependencies": true,
"no_container_images": true
},
"snyk_code": {
"no_scan": true
},
"observatory": {
"no_endpoint": true
},
"package_rollout": {
"only_consider_changesets_after": "16247824e24b"
},
"deployment_config_version": 7
}