itemengine-cypress-automation 1.0.84 → 1.0.85

Sign up to get free protection for your applications and to get access to all the features.
@@ -13,7 +13,7 @@ deployment:
13
13
  completions: 3
14
14
 
15
15
  image:
16
- cmd: /ie-e2e/run.sh
16
+ cmd: /ie-e2e/deploy/e2e/run.sh
17
17
 
18
18
  resources:
19
19
  limits:
@@ -0,0 +1,29 @@
1
+ global:
2
+ team: itemengine
3
+ name: itemengine-cypress-automation-smoke-test
4
+ type: integration_test
5
+
6
+ variables:
7
+ START_TIME: "$(date +%s)"
8
+
9
+ deployment:
10
+ job:
11
+ activeDeadlineSeconds: 7200
12
+ parallelism: 3
13
+ completions: 3
14
+
15
+ image:
16
+ cmd: /ie-e2e/deploy/smoke/run.sh
17
+
18
+ resources:
19
+ limits:
20
+ memory: 8446Mi
21
+ cpu: 5000m
22
+ requests:
23
+ memory: 4096Mi
24
+ cpu: 2000m
25
+
26
+ env:
27
+ instance:
28
+ - name: START_TIME
29
+ value: "${{ variables.START_TIME }}"
@@ -0,0 +1,6 @@
1
+ #!/bin/sh
2
+ env=$STAGE
3
+ echo Environment to test: $env
4
+ echo START_TIME: $START_TIME
5
+
6
+ npm run spinnaker:smoke
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "itemengine-cypress-automation",
3
- "version": "1.0.84",
3
+ "version": "1.0.85",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
File without changes