itemengine-cypress-automation 1.0.526-dependabot-npm-and-yarn-multi-c7c3a225fc-32a5452.0 → 1.0.527-IEI-6793-v-0dce620.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/scripts/sorry-cypress.mjs +62 -5
- package/service.yaml +2 -1
- package/deploy/DNDIntoCategoriesQuestion/service.yaml +0 -58
- package/deploy/audioResponseQuestion/service.yaml +0 -81
- package/deploy/dataApi/service.yaml +0 -58
- package/deploy/e2e/service.yaml +0 -58
- package/deploy/essayQuestion/service.yaml +0 -57
- package/deploy/feedbackScaleQuestion/service.yaml +0 -57
- package/deploy/fillInTheGapsQuestion/service.yaml +0 -57
- package/deploy/graphingQuestion/service.yaml +0 -57
- package/deploy/imageHighlightQuestion/service.yaml +0 -57
- package/deploy/listOrderingQuestion/service.yaml +0 -57
- package/deploy/migration/service.yaml +0 -57
- package/deploy/multipleSelectionQuestion/service.yaml +0 -57
- package/deploy/resourcesAndToolsQuestion/service.yaml +0 -57
- package/deploy/smoke/service.yaml +0 -57
- package/deploy/textEntryMathQuestion/service.yaml +0 -57
- package/deploy/thinkSphere/service.yaml +0 -57
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "itemengine-cypress-automation",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.527-IEI-6793-v-0dce620.0",
|
4
4
|
"description": "",
|
5
5
|
"main": "index.js",
|
6
6
|
"scripts": {
|
@@ -42,7 +42,7 @@
|
|
42
42
|
"axios": "^1.12.2",
|
43
43
|
"cy-verify-downloads": "^0.1.11",
|
44
44
|
"cy2": "^4.0.9",
|
45
|
-
"cypress": "^
|
45
|
+
"cypress": "^12.17.2",
|
46
46
|
"cypress-axe": "^1.4.0",
|
47
47
|
"cypress-file-upload": "^5.0.8",
|
48
48
|
"cypress-real-events": "^1.7.6",
|
@@ -209,14 +209,33 @@ export function runSorryCypressLocalSmoke() {
|
|
209
209
|
/**
|
210
210
|
* @method runSorryCypressSpinnakerSmoke
|
211
211
|
*/
|
212
|
-
export function runSorryCypressSpinnakerSmoke() {
|
212
|
+
export async function runSorryCypressSpinnakerSmoke() {
|
213
213
|
process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.tech/";
|
214
214
|
startTime = process.env.START_TIME;
|
215
215
|
ciBuildId = setCiBuildId("spinnaker", startTime);
|
216
216
|
const envArgs = setCommandLineEnvArgs()
|
217
217
|
let command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs} --spec "cypress/e2e/ILC/**/*.smoke.js"`;
|
218
218
|
console.log(`command: ${command}`);
|
219
|
-
|
219
|
+
const isOtkv2 = process.env.OTK_VERSION === '2';
|
220
|
+
try {
|
221
|
+
execSync(command, { stdio: "inherit" });
|
222
|
+
if (isOtkv2) {
|
223
|
+
const status = await checkRunStatus(ciBuildId);
|
224
|
+
process.exit(status);
|
225
|
+
}
|
226
|
+
} catch (error) {
|
227
|
+
console.error("One or more tests failed to pass, OR an error occurred during run");
|
228
|
+
console.error("Cypress run error details:", {
|
229
|
+
status: error.status,
|
230
|
+
message: error.message,
|
231
|
+
stack: error.stack
|
232
|
+
});
|
233
|
+
|
234
|
+
console.log("Exiting process with code: 1");
|
235
|
+
process.exit(1);
|
236
|
+
}
|
237
|
+
console.log("Cypress tests all passed successfully. Exiting process with code: 0");
|
238
|
+
process.exit(0);
|
220
239
|
}
|
221
240
|
|
222
241
|
/**
|
@@ -235,7 +254,26 @@ export async function runSorryCypressSpinnakerMigration() {
|
|
235
254
|
const envArgs = setCommandLineEnvArgs()
|
236
255
|
let command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs},migrationQuestionTypes=${questionTypes} --spec "cypress/e2e/migration/*.js"`;
|
237
256
|
console.log(`command: ${command}`);
|
238
|
-
|
257
|
+
const isOtkv2 = process.env.OTK_VERSION === '2';
|
258
|
+
try {
|
259
|
+
execSync(command, { stdio: "inherit" });
|
260
|
+
if (isOtkv2) {
|
261
|
+
const status = await checkRunStatus(ciBuildId);
|
262
|
+
process.exit(status);
|
263
|
+
}
|
264
|
+
} catch (error) {
|
265
|
+
console.error("One or more tests failed to pass, OR an error occurred during run");
|
266
|
+
console.error("Cypress run error details:", {
|
267
|
+
status: error.status,
|
268
|
+
message: error.message,
|
269
|
+
stack: error.stack
|
270
|
+
});
|
271
|
+
|
272
|
+
console.log("Exiting process with code: 1");
|
273
|
+
process.exit(1);
|
274
|
+
}
|
275
|
+
console.log("Cypress tests all passed successfully. Exiting process with code: 0");
|
276
|
+
process.exit(0);
|
239
277
|
}
|
240
278
|
|
241
279
|
/**
|
@@ -308,12 +346,31 @@ export async function runSorryCypressQuestions() {
|
|
308
346
|
/**
|
309
347
|
* @method runSorryCypressSpinnakerDataApi
|
310
348
|
*/
|
311
|
-
export function runSorryCypressSpinnakerDataApi() {
|
349
|
+
export async function runSorryCypressSpinnakerDataApi() {
|
312
350
|
process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.tech/";
|
313
351
|
startTime = process.env.START_TIME;
|
314
352
|
ciBuildId = setCiBuildId("spinnaker", startTime);
|
315
353
|
const envArgs = setCommandLineEnvArgs()
|
316
354
|
let command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs} --spec "cypress/e2e/ILC/dataApi/**/*.js,cypress/e2e/Sessions/**/*.js"`;
|
317
355
|
console.log(`command: ${command}`);
|
318
|
-
|
356
|
+
const isOtkv2 = process.env.OTK_VERSION === '2';
|
357
|
+
try {
|
358
|
+
execSync(command, { stdio: "inherit" });
|
359
|
+
if (isOtkv2) {
|
360
|
+
const status = await checkRunStatus(ciBuildId);
|
361
|
+
process.exit(status);
|
362
|
+
}
|
363
|
+
} catch (error) {
|
364
|
+
console.error("One or more tests failed to pass, OR an error occurred during run");
|
365
|
+
console.error("Cypress run error details:", {
|
366
|
+
status: error.status,
|
367
|
+
message: error.message,
|
368
|
+
stack: error.stack
|
369
|
+
});
|
370
|
+
|
371
|
+
console.log("Exiting process with code: 1");
|
372
|
+
process.exit(1);
|
373
|
+
}
|
374
|
+
console.log("Cypress tests all passed successfully. Exiting process with code: 0");
|
375
|
+
process.exit(0);
|
319
376
|
}
|
package/service.yaml
CHANGED
@@ -3,7 +3,7 @@ global:
|
|
3
3
|
type: test
|
4
4
|
autoDeploy:
|
5
5
|
enabled: true
|
6
|
-
highestEnvironment:
|
6
|
+
highestEnvironment: qa
|
7
7
|
|
8
8
|
deployment:
|
9
9
|
activeDeadlineSeconds: 28800
|
@@ -37,6 +37,7 @@ deployment:
|
|
37
37
|
- "*.cypress.io"
|
38
38
|
- "*.*.mozilla.com"
|
39
39
|
- "*.*.*.mozilla.com"
|
40
|
+
- "cdn.jsdelivr.net"
|
40
41
|
env:
|
41
42
|
- name: OTK_VERSION
|
42
43
|
value: "2"
|
@@ -1,58 +0,0 @@
|
|
1
|
-
global:
|
2
|
-
name: ie-dnd-categories
|
3
|
-
type: test
|
4
|
-
autoDeploy:
|
5
|
-
enabled: true
|
6
|
-
highestEnvironment: dev
|
7
|
-
|
8
|
-
deployment:
|
9
|
-
activeDeadlineSeconds: 28800
|
10
|
-
architecture: amd64
|
11
|
-
restartPolicy: Never
|
12
|
-
backoffLimit: 0
|
13
|
-
parallelism: 7
|
14
|
-
completions: 7
|
15
|
-
image:
|
16
|
-
cmd: /ie-e2e/deploy/DNDIntoCategoriesQuestion/run.sh
|
17
|
-
buildContext: ../..
|
18
|
-
resources:
|
19
|
-
limits:
|
20
|
-
memory: 8446Mi
|
21
|
-
cpu: 5000m
|
22
|
-
requests:
|
23
|
-
memory: 4096Mi
|
24
|
-
cpu: 2000m
|
25
|
-
egress:
|
26
|
-
FQDNs:
|
27
|
-
- "*.content-nonprod.imaginelearning.com"
|
28
|
-
- "*.cloudflare.com"
|
29
|
-
- "*.googleapis.com"
|
30
|
-
- "www.desmos.com"
|
31
|
-
- "*.google.com"
|
32
|
-
- "*.*.google.com"
|
33
|
-
- "google-ohttp-relay-safebrowsing.fastly-edge.com"
|
34
|
-
- "*.gstatic.com"
|
35
|
-
- "*.codecogs.com"
|
36
|
-
- "cypress-director.imaginelearning.tech"
|
37
|
-
- "cypress-api.imaginelearning.tech"
|
38
|
-
- "*.cypress.io"
|
39
|
-
- "*.*.mozilla.com"
|
40
|
-
- "*.*.*.mozilla.com"
|
41
|
-
|
42
|
-
namespaces:
|
43
|
-
dev:
|
44
|
-
env:
|
45
|
-
- name: STAGE
|
46
|
-
value: "dev"
|
47
|
-
qa:
|
48
|
-
env:
|
49
|
-
- name: STAGE
|
50
|
-
value: "qa"
|
51
|
-
staging:
|
52
|
-
env:
|
53
|
-
- name: STAGE
|
54
|
-
value: "stage"
|
55
|
-
prod:
|
56
|
-
env:
|
57
|
-
- name: STAGE
|
58
|
-
value: "prod"
|
@@ -1,81 +0,0 @@
|
|
1
|
-
global:
|
2
|
-
name: ie-audio-response
|
3
|
-
type: test
|
4
|
-
autoDeploy:
|
5
|
-
enabled: true
|
6
|
-
highestEnvironment: dev
|
7
|
-
|
8
|
-
deployment:
|
9
|
-
activeDeadlineSeconds: 28800
|
10
|
-
architecture: amd64
|
11
|
-
restartPolicy: Never
|
12
|
-
backoffLimit: 0
|
13
|
-
parallelism: 7
|
14
|
-
completions: 7
|
15
|
-
image:
|
16
|
-
cmd: /ie-e2e/deploy/audioResponseQuestion/run.sh
|
17
|
-
buildContext: ../..
|
18
|
-
resources:
|
19
|
-
limits:
|
20
|
-
cpu: 6000m
|
21
|
-
memory: 8Gi
|
22
|
-
requests:
|
23
|
-
cpu: 6000m
|
24
|
-
memory: 8Gi
|
25
|
-
egress:
|
26
|
-
FQDNs:
|
27
|
-
- "*.content-nonprod.imaginelearning.com"
|
28
|
-
- "*.cloudflare.com"
|
29
|
-
- "*.googleapis.com"
|
30
|
-
- "www.desmos.com"
|
31
|
-
- "*.google.com"
|
32
|
-
- "*.*.google.com"
|
33
|
-
- "google-ohttp-relay-safebrowsing.fastly-edge.com"
|
34
|
-
- "*.gstatic.com"
|
35
|
-
- "*.codecogs.com"
|
36
|
-
- "cypress-director.imaginelearning.tech"
|
37
|
-
- "cypress-api.imaginelearning.tech"
|
38
|
-
- "*.cypress.io"
|
39
|
-
- "*.*.mozilla.com"
|
40
|
-
- "*.*.*.mozilla.com"
|
41
|
-
env:
|
42
|
-
- name: OTK_VERSION
|
43
|
-
value: "2"
|
44
|
-
- name: CYPRESS_API_URL
|
45
|
-
value: "https://cypress-director.imaginelearning.tech/"
|
46
|
-
- name: THEME
|
47
|
-
value: "ilc"
|
48
|
-
- name: GREP_TAGS
|
49
|
-
value: ""
|
50
|
-
- name: GREP_UNTAGGED
|
51
|
-
value: ""
|
52
|
-
- name: SPEC_PATTERN
|
53
|
-
value: ""
|
54
|
-
- name: QUESTION_TYPE
|
55
|
-
value: "AudioResponseNew_VideoResponseNew_UploadResponse_ToolAudioPlayerNew"
|
56
|
-
|
57
|
-
namespaces:
|
58
|
-
dev:
|
59
|
-
env:
|
60
|
-
- name: STAGE
|
61
|
-
value: "dev"
|
62
|
-
- name: FILE_CONFIG
|
63
|
-
value: "dev"
|
64
|
-
qa:
|
65
|
-
env:
|
66
|
-
- name: STAGE
|
67
|
-
value: "qa"
|
68
|
-
- name: FILE_CONFIG
|
69
|
-
value: "qa"
|
70
|
-
staging:
|
71
|
-
env:
|
72
|
-
- name: STAGE
|
73
|
-
value: "stage"
|
74
|
-
- name: FILE_CONFIG
|
75
|
-
value: "stage"
|
76
|
-
prod:
|
77
|
-
env:
|
78
|
-
- name: STAGE
|
79
|
-
value: "prod"
|
80
|
-
- name: FILE_CONFIG
|
81
|
-
value: "prod"
|
@@ -1,58 +0,0 @@
|
|
1
|
-
global:
|
2
|
-
name: ie-data-api
|
3
|
-
type: test
|
4
|
-
autoDeploy:
|
5
|
-
enabled: true
|
6
|
-
highestEnvironment: dev
|
7
|
-
|
8
|
-
deployment:
|
9
|
-
activeDeadlineSeconds: 28800
|
10
|
-
architecture: amd64
|
11
|
-
restartPolicy: Never
|
12
|
-
backoffLimit: 0
|
13
|
-
parallelism: 7
|
14
|
-
completions: 7
|
15
|
-
image:
|
16
|
-
cmd: /ie-e2e/deploy/dataApi/run.sh
|
17
|
-
buildContext: ../..
|
18
|
-
resources:
|
19
|
-
limits:
|
20
|
-
memory: 8446Mi
|
21
|
-
cpu: 5000m
|
22
|
-
requests:
|
23
|
-
memory: 4096Mi
|
24
|
-
cpu: 2000m
|
25
|
-
egress:
|
26
|
-
FQDNs:
|
27
|
-
- "*.content-nonprod.imaginelearning.com"
|
28
|
-
- "*.cloudflare.com"
|
29
|
-
- "*.googleapis.com"
|
30
|
-
- "www.desmos.com"
|
31
|
-
- "*.google.com"
|
32
|
-
- "*.*.google.com"
|
33
|
-
- "google-ohttp-relay-safebrowsing.fastly-edge.com"
|
34
|
-
- "*.gstatic.com"
|
35
|
-
- "*.codecogs.com"
|
36
|
-
- "cypress-director.imaginelearning.tech"
|
37
|
-
- "cypress-api.imaginelearning.tech"
|
38
|
-
- "*.cypress.io"
|
39
|
-
- "*.*.mozilla.com"
|
40
|
-
- "*.*.*.mozilla.com"
|
41
|
-
|
42
|
-
namespaces:
|
43
|
-
dev:
|
44
|
-
env:
|
45
|
-
- name: STAGE
|
46
|
-
value: "dev"
|
47
|
-
qa:
|
48
|
-
env:
|
49
|
-
- name: STAGE
|
50
|
-
value: "qa"
|
51
|
-
staging:
|
52
|
-
env:
|
53
|
-
- name: STAGE
|
54
|
-
value: "stage"
|
55
|
-
prod:
|
56
|
-
env:
|
57
|
-
- name: STAGE
|
58
|
-
value: "prod"
|
package/deploy/e2e/service.yaml
DELETED
@@ -1,58 +0,0 @@
|
|
1
|
-
global:
|
2
|
-
name: ie-cypress-automation
|
3
|
-
type: test
|
4
|
-
autoDeploy:
|
5
|
-
enabled: true
|
6
|
-
highestEnvironment: dev
|
7
|
-
|
8
|
-
deployment:
|
9
|
-
activeDeadlineSeconds: 28800
|
10
|
-
architecture: amd64
|
11
|
-
restartPolicy: Never
|
12
|
-
backoffLimit: 0
|
13
|
-
parallelism: 7
|
14
|
-
completions: 7
|
15
|
-
image:
|
16
|
-
cmd: /ie-e2e/deploy/e2e/run.sh
|
17
|
-
buildContext: ../..
|
18
|
-
resources:
|
19
|
-
limits:
|
20
|
-
memory: 8446Mi
|
21
|
-
cpu: 5000m
|
22
|
-
requests:
|
23
|
-
memory: 4096Mi
|
24
|
-
cpu: 2000m
|
25
|
-
egress:
|
26
|
-
FQDNs:
|
27
|
-
- "*.content-nonprod.imaginelearning.com"
|
28
|
-
- "*.cloudflare.com"
|
29
|
-
- "*.googleapis.com"
|
30
|
-
- "www.desmos.com"
|
31
|
-
- "*.google.com"
|
32
|
-
- "*.*.google.com"
|
33
|
-
- "google-ohttp-relay-safebrowsing.fastly-edge.com"
|
34
|
-
- "*.gstatic.com"
|
35
|
-
- "*.codecogs.com"
|
36
|
-
- "cypress-director.imaginelearning.tech"
|
37
|
-
- "cypress-api.imaginelearning.tech"
|
38
|
-
- "*.cypress.io"
|
39
|
-
- "*.*.mozilla.com"
|
40
|
-
- "*.*.*.mozilla.com"
|
41
|
-
|
42
|
-
namespaces:
|
43
|
-
dev:
|
44
|
-
env:
|
45
|
-
- name: STAGE
|
46
|
-
value: "dev"
|
47
|
-
qa:
|
48
|
-
env:
|
49
|
-
- name: STAGE
|
50
|
-
value: "qa"
|
51
|
-
staging:
|
52
|
-
env:
|
53
|
-
- name: STAGE
|
54
|
-
value: "stage"
|
55
|
-
prod:
|
56
|
-
env:
|
57
|
-
- name: STAGE
|
58
|
-
value: "prod"
|
@@ -1,57 +0,0 @@
|
|
1
|
-
global:
|
2
|
-
name: ie-essay-response
|
3
|
-
type: test
|
4
|
-
autoDeploy:
|
5
|
-
enabled: true
|
6
|
-
highestEnvironment: dev
|
7
|
-
|
8
|
-
deployment:
|
9
|
-
activeDeadlineSeconds: 28800
|
10
|
-
architecture: amd64
|
11
|
-
restartPolicy: Never
|
12
|
-
backoffLimit: 0
|
13
|
-
parallelism: 7
|
14
|
-
completions: 7
|
15
|
-
image:
|
16
|
-
cmd: /ie-e2e/deploy/essayQuestion/run.sh
|
17
|
-
buildContext: ../..
|
18
|
-
resources:
|
19
|
-
limits:
|
20
|
-
memory: 8446Mi
|
21
|
-
cpu: 5000m
|
22
|
-
requests:
|
23
|
-
memory: 4096Mi
|
24
|
-
cpu: 2000m
|
25
|
-
egress:
|
26
|
-
FQDNs:
|
27
|
-
- "*.content-nonprod.imaginelearning.com"
|
28
|
-
- "*.cloudflare.com"
|
29
|
-
- "*.googleapis.com"
|
30
|
-
- "www.desmos.com"
|
31
|
-
- "*.google.com"
|
32
|
-
- "*.*.google.com"
|
33
|
-
- "google-ohttp-relay-safebrowsing.fastly-edge.com"
|
34
|
-
- "*.gstatic.com"
|
35
|
-
- "*.codecogs.com"
|
36
|
-
- "cypress-director.imaginelearning.tech"
|
37
|
-
- "cypress-api.imaginelearning.tech"
|
38
|
-
- "*.cypress.io"
|
39
|
-
- "*.*.mozilla.com"
|
40
|
-
- "*.*.*.mozilla.com"
|
41
|
-
namespaces:
|
42
|
-
dev:
|
43
|
-
env:
|
44
|
-
- name: STAGE
|
45
|
-
value: "dev"
|
46
|
-
qa:
|
47
|
-
env:
|
48
|
-
- name: STAGE
|
49
|
-
value: "qa"
|
50
|
-
staging:
|
51
|
-
env:
|
52
|
-
- name: STAGE
|
53
|
-
value: "stage"
|
54
|
-
prod:
|
55
|
-
env:
|
56
|
-
- name: STAGE
|
57
|
-
value: "prod"
|
@@ -1,57 +0,0 @@
|
|
1
|
-
global:
|
2
|
-
name: ie-feedback-scale
|
3
|
-
type: test
|
4
|
-
autoDeploy:
|
5
|
-
enabled: true
|
6
|
-
highestEnvironment: dev
|
7
|
-
|
8
|
-
deployment:
|
9
|
-
activeDeadlineSeconds: 28800
|
10
|
-
architecture: amd64
|
11
|
-
restartPolicy: Never
|
12
|
-
backoffLimit: 0
|
13
|
-
parallelism: 7
|
14
|
-
completions: 7
|
15
|
-
image:
|
16
|
-
cmd: /ie-e2e/deploy/feedbackScaleQuestion/run.sh
|
17
|
-
buildContext: ../..
|
18
|
-
resources:
|
19
|
-
limits:
|
20
|
-
memory: 8446Mi
|
21
|
-
cpu: 5000m
|
22
|
-
requests:
|
23
|
-
memory: 4096Mi
|
24
|
-
cpu: 2000m
|
25
|
-
egress:
|
26
|
-
FQDNs:
|
27
|
-
- "*.content-nonprod.imaginelearning.com"
|
28
|
-
- "*.cloudflare.com"
|
29
|
-
- "*.googleapis.com"
|
30
|
-
- "www.desmos.com"
|
31
|
-
- "*.google.com"
|
32
|
-
- "*.*.google.com"
|
33
|
-
- "google-ohttp-relay-safebrowsing.fastly-edge.com"
|
34
|
-
- "*.gstatic.com"
|
35
|
-
- "*.codecogs.com"
|
36
|
-
- "cypress-director.imaginelearning.tech"
|
37
|
-
- "cypress-api.imaginelearning.tech"
|
38
|
-
- "*.cypress.io"
|
39
|
-
- "*.*.mozilla.com"
|
40
|
-
- "*.*.*.mozilla.com"
|
41
|
-
namespaces:
|
42
|
-
dev:
|
43
|
-
env:
|
44
|
-
- name: STAGE
|
45
|
-
value: "dev"
|
46
|
-
qa:
|
47
|
-
env:
|
48
|
-
- name: STAGE
|
49
|
-
value: "qa"
|
50
|
-
staging:
|
51
|
-
env:
|
52
|
-
- name: STAGE
|
53
|
-
value: "stage"
|
54
|
-
prod:
|
55
|
-
env:
|
56
|
-
- name: STAGE
|
57
|
-
value: "prod"
|
@@ -1,57 +0,0 @@
|
|
1
|
-
global:
|
2
|
-
name: ie-fig-text
|
3
|
-
type: test
|
4
|
-
autoDeploy:
|
5
|
-
enabled: true
|
6
|
-
highestEnvironment: dev
|
7
|
-
|
8
|
-
deployment:
|
9
|
-
activeDeadlineSeconds: 28800
|
10
|
-
architecture: amd64
|
11
|
-
restartPolicy: Never
|
12
|
-
backoffLimit: 0
|
13
|
-
parallelism: 7
|
14
|
-
completions: 7
|
15
|
-
image:
|
16
|
-
cmd: /ie-e2e/deploy/fillInTheGapsQuestion/run.sh
|
17
|
-
buildContext: ../..
|
18
|
-
resources:
|
19
|
-
limits:
|
20
|
-
memory: 8446Mi
|
21
|
-
cpu: 5000m
|
22
|
-
requests:
|
23
|
-
memory: 4096Mi
|
24
|
-
cpu: 2000m
|
25
|
-
egress:
|
26
|
-
FQDNs:
|
27
|
-
- "*.content-nonprod.imaginelearning.com"
|
28
|
-
- "*.cloudflare.com"
|
29
|
-
- "*.googleapis.com"
|
30
|
-
- "www.desmos.com"
|
31
|
-
- "*.google.com"
|
32
|
-
- "*.*.google.com"
|
33
|
-
- "google-ohttp-relay-safebrowsing.fastly-edge.com"
|
34
|
-
- "*.gstatic.com"
|
35
|
-
- "*.codecogs.com"
|
36
|
-
- "cypress-director.imaginelearning.tech"
|
37
|
-
- "cypress-api.imaginelearning.tech"
|
38
|
-
- "*.cypress.io"
|
39
|
-
- "*.*.mozilla.com"
|
40
|
-
- "*.*.*.mozilla.com"
|
41
|
-
namespaces:
|
42
|
-
dev:
|
43
|
-
env:
|
44
|
-
- name: STAGE
|
45
|
-
value: "dev"
|
46
|
-
qa:
|
47
|
-
env:
|
48
|
-
- name: STAGE
|
49
|
-
value: "qa"
|
50
|
-
staging:
|
51
|
-
env:
|
52
|
-
- name: STAGE
|
53
|
-
value: "stage"
|
54
|
-
prod:
|
55
|
-
env:
|
56
|
-
- name: STAGE
|
57
|
-
value: "prod"
|
@@ -1,57 +0,0 @@
|
|
1
|
-
global:
|
2
|
-
name: ie-graphing
|
3
|
-
type: test
|
4
|
-
autoDeploy:
|
5
|
-
enabled: true
|
6
|
-
highestEnvironment: dev
|
7
|
-
|
8
|
-
deployment:
|
9
|
-
activeDeadlineSeconds: 28800
|
10
|
-
architecture: amd64
|
11
|
-
restartPolicy: Never
|
12
|
-
backoffLimit: 0
|
13
|
-
parallelism: 7
|
14
|
-
completions: 7
|
15
|
-
image:
|
16
|
-
cmd: /ie-e2e/deploy/graphingQuestion/run.sh
|
17
|
-
buildContext: ../..
|
18
|
-
resources:
|
19
|
-
limits:
|
20
|
-
memory: 8446Mi
|
21
|
-
cpu: 5000m
|
22
|
-
requests:
|
23
|
-
memory: 4096Mi
|
24
|
-
cpu: 2000m
|
25
|
-
egress:
|
26
|
-
FQDNs:
|
27
|
-
- "*.content-nonprod.imaginelearning.com"
|
28
|
-
- "*.cloudflare.com"
|
29
|
-
- "*.googleapis.com"
|
30
|
-
- "www.desmos.com"
|
31
|
-
- "*.google.com"
|
32
|
-
- "*.*.google.com"
|
33
|
-
- "google-ohttp-relay-safebrowsing.fastly-edge.com"
|
34
|
-
- "*.gstatic.com"
|
35
|
-
- "*.codecogs.com"
|
36
|
-
- "cypress-director.imaginelearning.tech"
|
37
|
-
- "cypress-api.imaginelearning.tech"
|
38
|
-
- "*.cypress.io"
|
39
|
-
- "*.*.mozilla.com"
|
40
|
-
- "*.*.*.mozilla.com"
|
41
|
-
namespaces:
|
42
|
-
dev:
|
43
|
-
env:
|
44
|
-
- name: STAGE
|
45
|
-
value: "dev"
|
46
|
-
qa:
|
47
|
-
env:
|
48
|
-
- name: STAGE
|
49
|
-
value: "qa"
|
50
|
-
staging:
|
51
|
-
env:
|
52
|
-
- name: STAGE
|
53
|
-
value: "stage"
|
54
|
-
prod:
|
55
|
-
env:
|
56
|
-
- name: STAGE
|
57
|
-
value: "prod"
|
@@ -1,57 +0,0 @@
|
|
1
|
-
global:
|
2
|
-
name: ie-image-highlight
|
3
|
-
type: test
|
4
|
-
autoDeploy:
|
5
|
-
enabled: true
|
6
|
-
highestEnvironment: dev
|
7
|
-
|
8
|
-
deployment:
|
9
|
-
activeDeadlineSeconds: 28800
|
10
|
-
architecture: amd64
|
11
|
-
restartPolicy: Never
|
12
|
-
backoffLimit: 0
|
13
|
-
parallelism: 7
|
14
|
-
completions: 7
|
15
|
-
image:
|
16
|
-
cmd: /ie-e2e/deploy/imageHighlightQuestion/run.sh
|
17
|
-
buildContext: ../..
|
18
|
-
resources:
|
19
|
-
limits:
|
20
|
-
memory: 8446Mi
|
21
|
-
cpu: 5000m
|
22
|
-
requests:
|
23
|
-
memory: 4096Mi
|
24
|
-
cpu: 2000m
|
25
|
-
egress:
|
26
|
-
FQDNs:
|
27
|
-
- "*.content-nonprod.imaginelearning.com"
|
28
|
-
- "*.cloudflare.com"
|
29
|
-
- "*.googleapis.com"
|
30
|
-
- "www.desmos.com"
|
31
|
-
- "*.google.com"
|
32
|
-
- "*.*.google.com"
|
33
|
-
- "google-ohttp-relay-safebrowsing.fastly-edge.com"
|
34
|
-
- "*.gstatic.com"
|
35
|
-
- "*.codecogs.com"
|
36
|
-
- "cypress-director.imaginelearning.tech"
|
37
|
-
- "cypress-api.imaginelearning.tech"
|
38
|
-
- "*.cypress.io"
|
39
|
-
- "*.*.mozilla.com"
|
40
|
-
- "*.*.*.mozilla.com"
|
41
|
-
namespaces:
|
42
|
-
dev:
|
43
|
-
env:
|
44
|
-
- name: STAGE
|
45
|
-
value: "dev"
|
46
|
-
qa:
|
47
|
-
env:
|
48
|
-
- name: STAGE
|
49
|
-
value: "qa"
|
50
|
-
staging:
|
51
|
-
env:
|
52
|
-
- name: STAGE
|
53
|
-
value: "stage"
|
54
|
-
prod:
|
55
|
-
env:
|
56
|
-
- name: STAGE
|
57
|
-
value: "prod"
|
@@ -1,57 +0,0 @@
|
|
1
|
-
global:
|
2
|
-
name: ie-list-ordering
|
3
|
-
type: test
|
4
|
-
autoDeploy:
|
5
|
-
enabled: true
|
6
|
-
highestEnvironment: dev
|
7
|
-
|
8
|
-
deployment:
|
9
|
-
activeDeadlineSeconds: 28800
|
10
|
-
architecture: amd64
|
11
|
-
restartPolicy: Never
|
12
|
-
backoffLimit: 0
|
13
|
-
parallelism: 7
|
14
|
-
completions: 7
|
15
|
-
image:
|
16
|
-
cmd: /ie-e2e/deploy/listOrderingQuestion/run.sh
|
17
|
-
buildContext: ../..
|
18
|
-
resources:
|
19
|
-
limits:
|
20
|
-
memory: 8446Mi
|
21
|
-
cpu: 5000m
|
22
|
-
requests:
|
23
|
-
memory: 4096Mi
|
24
|
-
cpu: 2000m
|
25
|
-
egress:
|
26
|
-
FQDNs:
|
27
|
-
- "*.content-nonprod.imaginelearning.com"
|
28
|
-
- "*.cloudflare.com"
|
29
|
-
- "*.googleapis.com"
|
30
|
-
- "www.desmos.com"
|
31
|
-
- "*.google.com"
|
32
|
-
- "*.*.google.com"
|
33
|
-
- "google-ohttp-relay-safebrowsing.fastly-edge.com"
|
34
|
-
- "*.gstatic.com"
|
35
|
-
- "*.codecogs.com"
|
36
|
-
- "cypress-director.imaginelearning.tech"
|
37
|
-
- "cypress-api.imaginelearning.tech"
|
38
|
-
- "*.cypress.io"
|
39
|
-
- "*.*.mozilla.com"
|
40
|
-
- "*.*.*.mozilla.com"
|
41
|
-
namespaces:
|
42
|
-
dev:
|
43
|
-
env:
|
44
|
-
- name: STAGE
|
45
|
-
value: "dev"
|
46
|
-
qa:
|
47
|
-
env:
|
48
|
-
- name: STAGE
|
49
|
-
value: "qa"
|
50
|
-
staging:
|
51
|
-
env:
|
52
|
-
- name: STAGE
|
53
|
-
value: "stage"
|
54
|
-
prod:
|
55
|
-
env:
|
56
|
-
- name: STAGE
|
57
|
-
value: "prod"
|
@@ -1,57 +0,0 @@
|
|
1
|
-
global:
|
2
|
-
name: ie-migration-test
|
3
|
-
type: test
|
4
|
-
autoDeploy:
|
5
|
-
enabled: true
|
6
|
-
highestEnvironment: dev
|
7
|
-
|
8
|
-
deployment:
|
9
|
-
activeDeadlineSeconds: 28800
|
10
|
-
architecture: amd64
|
11
|
-
restartPolicy: Never
|
12
|
-
backoffLimit: 0
|
13
|
-
parallelism: 7
|
14
|
-
completions: 7
|
15
|
-
image:
|
16
|
-
cmd: /ie-e2e/deploy/migration/run.sh
|
17
|
-
buildContext: ../..
|
18
|
-
resources:
|
19
|
-
limits:
|
20
|
-
memory: 8446Mi
|
21
|
-
cpu: 5000m
|
22
|
-
requests:
|
23
|
-
memory: 4096Mi
|
24
|
-
cpu: 2000m
|
25
|
-
egress:
|
26
|
-
FQDNs:
|
27
|
-
- "*.content-nonprod.imaginelearning.com"
|
28
|
-
- "*.cloudflare.com"
|
29
|
-
- "*.googleapis.com"
|
30
|
-
- "www.desmos.com"
|
31
|
-
- "*.google.com"
|
32
|
-
- "*.*.google.com"
|
33
|
-
- "google-ohttp-relay-safebrowsing.fastly-edge.com"
|
34
|
-
- "*.gstatic.com"
|
35
|
-
- "*.codecogs.com"
|
36
|
-
- "cypress-director.imaginelearning.tech"
|
37
|
-
- "cypress-api.imaginelearning.tech"
|
38
|
-
- "*.cypress.io"
|
39
|
-
- "*.*.mozilla.com"
|
40
|
-
- "*.*.*.mozilla.com"
|
41
|
-
namespaces:
|
42
|
-
dev:
|
43
|
-
env:
|
44
|
-
- name: STAGE
|
45
|
-
value: "dev"
|
46
|
-
qa:
|
47
|
-
env:
|
48
|
-
- name: STAGE
|
49
|
-
value: "qa"
|
50
|
-
staging:
|
51
|
-
env:
|
52
|
-
- name: STAGE
|
53
|
-
value: "stage"
|
54
|
-
prod:
|
55
|
-
env:
|
56
|
-
- name: STAGE
|
57
|
-
value: "prod"
|
@@ -1,57 +0,0 @@
|
|
1
|
-
global:
|
2
|
-
name: ie-multiple-selection
|
3
|
-
type: test
|
4
|
-
autoDeploy:
|
5
|
-
enabled: true
|
6
|
-
highestEnvironment: dev
|
7
|
-
|
8
|
-
deployment:
|
9
|
-
activeDeadlineSeconds: 28800
|
10
|
-
architecture: amd64
|
11
|
-
restartPolicy: Never
|
12
|
-
backoffLimit: 0
|
13
|
-
parallelism: 7
|
14
|
-
completions: 7
|
15
|
-
image:
|
16
|
-
cmd: /ie-e2e/deploy/multipleSelectionQuestion/run.sh
|
17
|
-
buildContext: ../..
|
18
|
-
resources:
|
19
|
-
limits:
|
20
|
-
memory: 8446Mi
|
21
|
-
cpu: 5000m
|
22
|
-
requests:
|
23
|
-
memory: 4096Mi
|
24
|
-
cpu: 2000m
|
25
|
-
egress:
|
26
|
-
FQDNs:
|
27
|
-
- "*.content-nonprod.imaginelearning.com"
|
28
|
-
- "*.cloudflare.com"
|
29
|
-
- "*.googleapis.com"
|
30
|
-
- "www.desmos.com"
|
31
|
-
- "*.google.com"
|
32
|
-
- "*.*.google.com"
|
33
|
-
- "google-ohttp-relay-safebrowsing.fastly-edge.com"
|
34
|
-
- "*.gstatic.com"
|
35
|
-
- "*.codecogs.com"
|
36
|
-
- "cypress-director.imaginelearning.tech"
|
37
|
-
- "cypress-api.imaginelearning.tech"
|
38
|
-
- "*.cypress.io"
|
39
|
-
- "*.*.mozilla.com"
|
40
|
-
- "*.*.*.mozilla.com"
|
41
|
-
namespaces:
|
42
|
-
dev:
|
43
|
-
env:
|
44
|
-
- name: STAGE
|
45
|
-
value: "dev"
|
46
|
-
qa:
|
47
|
-
env:
|
48
|
-
- name: STAGE
|
49
|
-
value: "qa"
|
50
|
-
staging:
|
51
|
-
env:
|
52
|
-
- name: STAGE
|
53
|
-
value: "stage"
|
54
|
-
prod:
|
55
|
-
env:
|
56
|
-
- name: STAGE
|
57
|
-
value: "prod"
|
@@ -1,57 +0,0 @@
|
|
1
|
-
global:
|
2
|
-
name: ie-reading-ruler
|
3
|
-
type: test
|
4
|
-
autoDeploy:
|
5
|
-
enabled: true
|
6
|
-
highestEnvironment: dev
|
7
|
-
|
8
|
-
deployment:
|
9
|
-
activeDeadlineSeconds: 28800
|
10
|
-
architecture: amd64
|
11
|
-
restartPolicy: Never
|
12
|
-
backoffLimit: 0
|
13
|
-
parallelism: 7
|
14
|
-
completions: 7
|
15
|
-
image:
|
16
|
-
cmd: /ie-e2e/deploy/resourcesAndToolsQuestion/run.sh
|
17
|
-
buildContext: ../..
|
18
|
-
resources:
|
19
|
-
limits:
|
20
|
-
memory: 8446Mi
|
21
|
-
cpu: 5000m
|
22
|
-
requests:
|
23
|
-
memory: 4096Mi
|
24
|
-
cpu: 2000m
|
25
|
-
egress:
|
26
|
-
FQDNs:
|
27
|
-
- "*.content-nonprod.imaginelearning.com"
|
28
|
-
- "*.cloudflare.com"
|
29
|
-
- "*.googleapis.com"
|
30
|
-
- "www.desmos.com"
|
31
|
-
- "*.google.com"
|
32
|
-
- "*.*.google.com"
|
33
|
-
- "google-ohttp-relay-safebrowsing.fastly-edge.com"
|
34
|
-
- "*.gstatic.com"
|
35
|
-
- "*.codecogs.com"
|
36
|
-
- "cypress-director.imaginelearning.tech"
|
37
|
-
- "cypress-api.imaginelearning.tech"
|
38
|
-
- "*.cypress.io"
|
39
|
-
- "*.*.mozilla.com"
|
40
|
-
- "*.*.*.mozilla.com"
|
41
|
-
namespaces:
|
42
|
-
dev:
|
43
|
-
env:
|
44
|
-
- name: STAGE
|
45
|
-
value: "dev"
|
46
|
-
qa:
|
47
|
-
env:
|
48
|
-
- name: STAGE
|
49
|
-
value: "qa"
|
50
|
-
staging:
|
51
|
-
env:
|
52
|
-
- name: STAGE
|
53
|
-
value: "staging"
|
54
|
-
prod:
|
55
|
-
env:
|
56
|
-
- name: STAGE
|
57
|
-
value: "prod"
|
@@ -1,57 +0,0 @@
|
|
1
|
-
global:
|
2
|
-
name: ie-smoke-test
|
3
|
-
type: test
|
4
|
-
autoDeploy:
|
5
|
-
enabled: true
|
6
|
-
highestEnvironment: dev
|
7
|
-
|
8
|
-
deployment:
|
9
|
-
activeDeadlineSeconds: 28800
|
10
|
-
architecture: amd64
|
11
|
-
restartPolicy: Never
|
12
|
-
backoffLimit: 0
|
13
|
-
parallelism: 7
|
14
|
-
completions: 7
|
15
|
-
image:
|
16
|
-
cmd: /ie-e2e/deploy/smoke/run.sh
|
17
|
-
buildContext: ../..
|
18
|
-
resources:
|
19
|
-
limits:
|
20
|
-
memory: 8446Mi
|
21
|
-
cpu: 5000m
|
22
|
-
requests:
|
23
|
-
memory: 4096Mi
|
24
|
-
cpu: 2000m
|
25
|
-
egress:
|
26
|
-
FQDNs:
|
27
|
-
- "*.content-nonprod.imaginelearning.com"
|
28
|
-
- "*.cloudflare.com"
|
29
|
-
- "*.googleapis.com"
|
30
|
-
- "www.desmos.com"
|
31
|
-
- "*.google.com"
|
32
|
-
- "*.*.google.com"
|
33
|
-
- "google-ohttp-relay-safebrowsing.fastly-edge.com"
|
34
|
-
- "*.gstatic.com"
|
35
|
-
- "*.codecogs.com"
|
36
|
-
- "cypress-director.imaginelearning.tech"
|
37
|
-
- "cypress-api.imaginelearning.tech"
|
38
|
-
- "*.cypress.io"
|
39
|
-
- "*.*.mozilla.com"
|
40
|
-
- "*.*.*.mozilla.com"
|
41
|
-
namespaces:
|
42
|
-
dev:
|
43
|
-
env:
|
44
|
-
- name: STAGE
|
45
|
-
value: "dev"
|
46
|
-
qa:
|
47
|
-
env:
|
48
|
-
- name: STAGE
|
49
|
-
value: "qa"
|
50
|
-
staging:
|
51
|
-
env:
|
52
|
-
- name: STAGE
|
53
|
-
value: "stage"
|
54
|
-
prod:
|
55
|
-
env:
|
56
|
-
- name: STAGE
|
57
|
-
value: "prod"
|
@@ -1,57 +0,0 @@
|
|
1
|
-
global:
|
2
|
-
name: ie-text-entry-math
|
3
|
-
type: test
|
4
|
-
autoDeploy:
|
5
|
-
enabled: true
|
6
|
-
highestEnvironment: dev
|
7
|
-
|
8
|
-
deployment:
|
9
|
-
activeDeadlineSeconds: 28800
|
10
|
-
architecture: amd64
|
11
|
-
restartPolicy: Never
|
12
|
-
backoffLimit: 0
|
13
|
-
parallelism: 7
|
14
|
-
completions: 7
|
15
|
-
image:
|
16
|
-
cmd: /ie-e2e/deploy/textEntryMathQuestion/run.sh
|
17
|
-
buildContext: ../..
|
18
|
-
resources:
|
19
|
-
limits:
|
20
|
-
memory: 8446Mi
|
21
|
-
cpu: 5000m
|
22
|
-
requests:
|
23
|
-
memory: 4096Mi
|
24
|
-
cpu: 2000m
|
25
|
-
egress:
|
26
|
-
FQDNs:
|
27
|
-
- "*.content-nonprod.imaginelearning.com"
|
28
|
-
- "*.cloudflare.com"
|
29
|
-
- "*.googleapis.com"
|
30
|
-
- "www.desmos.com"
|
31
|
-
- "*.google.com"
|
32
|
-
- "*.*.google.com"
|
33
|
-
- "google-ohttp-relay-safebrowsing.fastly-edge.com"
|
34
|
-
- "*.gstatic.com"
|
35
|
-
- "*.codecogs.com"
|
36
|
-
- "cypress-director.imaginelearning.tech"
|
37
|
-
- "cypress-api.imaginelearning.tech"
|
38
|
-
- "*.cypress.io"
|
39
|
-
- "*.*.mozilla.com"
|
40
|
-
- "*.*.*.mozilla.com"
|
41
|
-
namespaces:
|
42
|
-
dev:
|
43
|
-
env:
|
44
|
-
- name: STAGE
|
45
|
-
value: "dev"
|
46
|
-
qa:
|
47
|
-
env:
|
48
|
-
- name: STAGE
|
49
|
-
value: "qa"
|
50
|
-
staging:
|
51
|
-
env:
|
52
|
-
- name: STAGE
|
53
|
-
value: "stage"
|
54
|
-
prod:
|
55
|
-
env:
|
56
|
-
- name: STAGE
|
57
|
-
value: "prod"
|
@@ -1,57 +0,0 @@
|
|
1
|
-
global:
|
2
|
-
name: ie-think-sphere
|
3
|
-
type: test
|
4
|
-
autoDeploy:
|
5
|
-
enabled: true
|
6
|
-
highestEnvironment: dev
|
7
|
-
|
8
|
-
deployment:
|
9
|
-
activeDeadlineSeconds: 28800
|
10
|
-
architecture: amd64
|
11
|
-
restartPolicy: Never
|
12
|
-
backoffLimit: 0
|
13
|
-
parallelism: 7
|
14
|
-
completions: 7
|
15
|
-
image:
|
16
|
-
cmd: /ie-e2e/deploy/thinkSphere/run.sh
|
17
|
-
buildContext: ../..
|
18
|
-
resources:
|
19
|
-
limits:
|
20
|
-
memory: 8446Mi
|
21
|
-
cpu: 5000m
|
22
|
-
requests:
|
23
|
-
memory: 4096Mi
|
24
|
-
cpu: 2000m
|
25
|
-
egress:
|
26
|
-
FQDNs:
|
27
|
-
- "*.content-nonprod.imaginelearning.com"
|
28
|
-
- "*.cloudflare.com"
|
29
|
-
- "*.googleapis.com"
|
30
|
-
- "www.desmos.com"
|
31
|
-
- "*.google.com"
|
32
|
-
- "*.*.google.com"
|
33
|
-
- "google-ohttp-relay-safebrowsing.fastly-edge.com"
|
34
|
-
- "*.gstatic.com"
|
35
|
-
- "*.codecogs.com"
|
36
|
-
- "cypress-director.imaginelearning.tech"
|
37
|
-
- "cypress-api.imaginelearning.tech"
|
38
|
-
- "*.cypress.io"
|
39
|
-
- "*.*.mozilla.com"
|
40
|
-
- "*.*.*.mozilla.com"
|
41
|
-
namespaces:
|
42
|
-
dev:
|
43
|
-
env:
|
44
|
-
- name: STAGE
|
45
|
-
value: "dev"
|
46
|
-
qa:
|
47
|
-
env:
|
48
|
-
- name: STAGE
|
49
|
-
value: "qa"
|
50
|
-
staging:
|
51
|
-
env:
|
52
|
-
- name: STAGE
|
53
|
-
value: "stage"
|
54
|
-
prod:
|
55
|
-
env:
|
56
|
-
- name: STAGE
|
57
|
-
value: "prod"
|