itemengine-cypress-automation 1.0.8 → 1.0.9
Sign up to get free protection for your applications and to get access to all the features.
- package/deploy.yaml +9 -1
- package/package.json +1 -1
- package/run.sh +1 -0
package/deploy.yaml
CHANGED
@@ -3,6 +3,9 @@ global:
|
|
3
3
|
name: itemengine-cypress-automation
|
4
4
|
type: integration_test
|
5
5
|
|
6
|
+
variables:
|
7
|
+
START_TIME: "$(date +%s)"
|
8
|
+
|
6
9
|
deployment:
|
7
10
|
job:
|
8
11
|
activeDeadlineSeconds: 7200
|
@@ -18,4 +21,9 @@ deployment:
|
|
18
21
|
cpu: 5000m
|
19
22
|
requests:
|
20
23
|
memory: 4096Mi
|
21
|
-
cpu: 2000m
|
24
|
+
cpu: 2000m
|
25
|
+
|
26
|
+
env:
|
27
|
+
instance:
|
28
|
+
- name: START_TIME
|
29
|
+
value: "${{ variables.START_TIME }}"
|
package/package.json
CHANGED