-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdeploy.js
211 lines (188 loc) · 5.85 KB
/
deploy.js
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
"use strict";
const { OpenShiftClientX } = require("@bcgov/pipeline-cli");
const path = require("path");
const util = require("./util");
module.exports = (settings) => {
const phases = settings.phases;
const options = settings.options;
const phase = options.env;
const changeId = phases[phase].changeId;
const version = options.version || `${phases[phase].phase}-1.0.0`;
const oc = new OpenShiftClientX(
Object.assign({ namespace: phases[phase].namespace }, options)
);
const templatesLocalBaseUrl = oc.toFileUrl(
path.resolve(__dirname, "../../openshift")
);
var objects = [];
const logDbSecret = util.getSecret(
oc,
phases[phase].namespace,
`${phases[phase].name}-logdb${phases[phase].suffix}`
);
// The deployment of your cool app goes here ▼▼▼
objects.push(
...oc.processDeploymentTemplate(
`${templatesLocalBaseUrl}/client-deploy-config.yaml`,
{
param: {
NAME: `${phases[phase].name}-client`,
SUFFIX: phases[phase].suffix,
VERSION: version,
ENV: phases[phase].phase,
HOST: phases[phase].host,
CPU: phases[phase].client_cpu,
MEMORY: phases[phase].client_memory,
NAMESPACE: phases[phase].namespace,
},
}
)
);
if (!logDbSecret) {
console.log("Adding logDb postgresql secret");
objects.push(
...oc.processDeploymentTemplate(
`${templatesLocalBaseUrl}/secrets/logdb-postgresql-secrets.yaml`,
{
param: {
NAME: `${phases[phase].name}-logdb`,
SUFFIX: phases[phase].suffix,
},
}
)
);
}
objects.push(
...oc.processDeploymentTemplate(
`${templatesLocalBaseUrl}/postgresql-deploy-config.yaml`,
{
param: {
NAME: `${phases[phase].name}-logdb`,
SUFFIX: phases[phase].suffix,
VERSION: version,
ENV: phases[phase].phase,
},
}
)
);
objects.push(
...oc.processDeploymentTemplate(
`${templatesLocalBaseUrl}/configmaps/api-appsettings.yaml`,
{
param: {
ENV: phases[phase].phase,
SUBMISSION_URL: `https://${phases[phase].url_prefix}hmcr.th.gov.bc.ca/workreporting?serviceArea={0}&showResult={1}`,
BCEID_SERVICE: `https://gws1${phases[phase].bceid_service}.bceid.ca/webservices/client/v10/bceidservice.asmx`,
EXPORT_URL: `https://${phases[phase].export_server}.apps.th.gov.bc.ca`,
OAS_URL: `https://${phases[phase].oas_server}.apps.th.gov.bc.ca`,
GEOSERVER_TIMEOUT: 120,
},
}
)
);
objects.push(
...oc.processDeploymentTemplate(
`${templatesLocalBaseUrl}/api-deploy-config.yaml`,
{
param: {
NAME: `${phases[phase].name}-api`,
LOGDB_NAME: `${phases[phase].name}-logdb`,
SUFFIX: phases[phase].suffix,
VERSION: version,
HOST: phases[phase].host,
ENV: phases[phase].phase,
ASPNETCORE_ENVIRONMENT: phases[phase].dotnet_env,
CPU: phases[phase].api_cpu,
MEMORY: phases[phase].api_memory,
NAMESPACE: phases[phase].namespace,
},
}
)
);
objects.push(
...oc.processDeploymentTemplate(
`${templatesLocalBaseUrl}/hangfire-deploy-config.yaml`,
{
param: {
NAME: `${phases[phase].name}-hangfire`,
LOGDB_NAME: `${phases[phase].name}-logdb`,
SUFFIX: phases[phase].suffix,
VERSION: version,
ENV: phases[phase].phase,
ASPNETCORE_ENVIRONMENT: phases[phase].dotnet_env,
CPU: phases[phase].hangfire_cpu,
MEMORY: phases[phase].hangfire_memory,
NAMESPACE: phases[phase].namespace,
},
}
)
);
oc.applyRecommendedLabels(
objects,
phases[phase].name,
phase,
`${changeId}`,
phases[phase].instance
);
oc.importImageStreams(
objects,
phases[phase].tag,
phases.build.namespace,
phases.build.tag
);
let imageExists = false;
oc.applyAndDeploy(objects, phases[phase].instance)
.then(() => {
const imageNames = ["hmcr-api", "hmcr-client", "hmcr-hangfire"];
imageExists = imageNames.every((imageName) => {
try {
const imageSha = oc.raw("get", [
"istag",
`${imageName}:${version}`,
"-n",
"d3d940-tools",
"-o",
"json",
]);
if (!imageSha) {
console.error(
`❌ Error: No built image found for ${imageName}:${version}`
);
return false;
}
console.log(`🔄 Tagging built image as 'latest' for ${imageName}`);
oc.raw("tag", [
`d3d940-tools/${imageName}:${version}`,
`d3d940-tools/${imageName}:latest`,
]);
console.log(
`✅ Successfully tagged ${imageName}:${version} as latest.`
);
return true;
} catch (error) {
console.error(error.message);
return false;
}
});
console.log("✅ All images are now tagged as latest.");
})
.finally(() => {
if (!imageExists) {
console.log("❌ Skipping final tagging because image does not exist.");
return;
}
const imageNames = ["hmcr-api", "hmcr-client", "hmcr-hangfire"];
imageNames.forEach((imageName) => {
const sourceImage = `d3d940-tools/${imageName}:latest`;
const targetImage = `${phases[phase].namespace}/${imageName}`;
console.log(
`🔄 Tagging Image for Deployment: ${sourceImage} -> ${targetImage}`
);
// Tag the image for the specific deployment environment
oc.raw("tag", [`${sourceImage}`, `${targetImage}:${version}`]);
console.log(
`✅ Image successfully tagged for ${phase}: ${targetImage}`
);
});
});
};