Skip to content

Commit

Permalink
Changes from PR.
Browse files Browse the repository at this point in the history
  • Loading branch information
bnapolitan committed Jul 1, 2020
1 parent 72a8608 commit 5bab04d
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 20 deletions.
12 changes: 6 additions & 6 deletions scripts/run-integration-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -218,17 +218,17 @@ fi

if [[ "$RUN_PERFORMANCE_TESTS" == true ]]; then
START=$SECONDS
$KUBECTL_PATH apply -f deploy-130-pods.yaml
$KUBECTL_PATH apply -f ./testdata/deploy-130-pods.yaml
run_performance_test_130_pods
$KUBECTL_PATH delete -f deploy-130-pods.yaml
$KUBECTL_PATH delete -f ./testdata/deploy-130-pods.yaml

$KUBECTL_PATH apply -f deploy-730-pods.yaml
$KUBECTL_PATH apply -f ./testdata/deploy-730-pods.yaml
run_performance_test_730_pods
$KUBECTL_PATH delete -f deploy-730-pods.yaml
$KUBECTL_PATH delete -f ./testdata/deploy-730-pods.yaml

$KUBECTL_PATH apply -f deploy-5000-pods.yaml
$KUBECTL_PATH apply -f ./testdata/deploy-5000-pods.yaml
run_performance_test_5000_pods
$KUBECTL_PATH delete -f deploy-5000-pods.yaml
$KUBECTL_PATH delete -f ./testdata/deploy-5000-pods.yaml
PERFORMANCE_DURATION=$((SECONDS - START))
fi

Expand Down
20 changes: 9 additions & 11 deletions test/integration/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
## Conformance test duration log

Design document link - https://quip-amazon.com/BoJLAC3IpIfW
## Conformance test duration log

* May 20, 2020: Initial integration step took roughly 3h 41min
* May 27: 3h 1min
Expand All @@ -14,21 +12,21 @@ Design document link - https://quip-amazon.com/BoJLAC3IpIfW
* May 29: 2h 59min 30s
* Cache dependencies when testing default CNI
* Timelines:
* Docker build: 3.583 min
* Up test cluster: 31.4 min
* Docker build: 4 min
* Up test cluster: 31 min
* Default CNI: 50s
* Updating CNI image: 92s
* Current image integration: 17s
* Conformance tests: 113.8 min (1.9 hrs)
* Down cluster: 30.417 min
* Conformance tests: 114 min (1.9 hrs)
* Down cluster: 30 min
* June 5: 1h 24min 9s
* Parallel execution of conformance tests
* Timelines:
* Docker build: 3.617 min
* Up test cluster: 31.3 min
* Docker build: 3 min
* Up test cluster: 31 min
* Default CNI: 52s
* Updating CNI image: 92s
* Current image integration: 18s
* Conformance tests: 16.317 min
* Down cluster: 29.95 min
* Conformance tests: 16 min
* Down cluster: 30 min

2 changes: 1 addition & 1 deletion deploy-130-pods.yaml → testdata/deploy-130-pods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
spec:
containers:
- name: hello
image: "gcr.io/google-samples/hello-go-gke:1.0"
image: nginx:1.16.1-alpine
ports:
- name: http
containerPort: 80
Expand Down
2 changes: 1 addition & 1 deletion deploy-5000-pods.yaml → testdata/deploy-5000-pods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
spec:
containers:
- name: hello
image: "gcr.io/google-samples/hello-go-gke:1.0"
image: nginx:1.16.1-alpine
ports:
- name: http
containerPort: 80
Expand Down
2 changes: 1 addition & 1 deletion deploy-730-pods.yaml → testdata/deploy-730-pods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
spec:
containers:
- name: hello
image: "gcr.io/google-samples/hello-go-gke:1.0"
image: nginx:1.16.1-alpine
ports:
- name: http
containerPort: 80
Expand Down

0 comments on commit 5bab04d

Please sign in to comment.