Skip to content

Commit

Permalink
Attempt all scale tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
bnapolitan committed Jun 24, 2020
1 parent 81dd0aa commit 166a168
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion scripts/lib/cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function down-test-cluster() {
function up-test-cluster() {
MNGS=""
if [[ "$RUN_SCALE_TESTS" == true ]]; then
MNGS='{"GetRef.Name-mng-for-cni":{"name":"GetRef.Name-mng-for-cni","remote-access-user-name":"ec2-user","tags":{"group":"amazon-vpc-cni-k8s"},"release-version":"","ami-type":"AL2_x86_64","asg-min-size":3,"asg-max-size":3,"asg-desired-capacity":3,"instance-types":["c5.xlarge"],"volume-size":40}, "three-nodes":{"name":"three-nodes","remote-access-user-name":"ec2-user","tags":{"group":"amazon-vpc-cni-k8s"},"release-version":"","ami-type":"AL2_x86_64","asg-min-size":3,"asg-max-size":3,"asg-desired-capacity":3,"instance-types":["m5.xlarge"],"volume-size":40}, "single-node":{"name":"single-node","remote-access-user-name":"ec2-user","tags":{"group":"amazon-vpc-cni-k8s"},"release-version":"","ami-type":"AL2_x86_64","asg-min-size":1,"asg-max-size":1,"asg-desired-capacity":1,"instance-types":["m5.16xlarge"],"volume-size":40}, "multi-node":{"name":"multi-node","remote-access-user-name":"ec2-user","tags":{"group":"amazon-vpc-cni-k8s"},"release-version":"","ami-type":"AL2_x86_64","asg-min-size":98,"asg-max-size":100,"asg-desired-capacity":98,"instance-types":["m5.xlarge"],"volume-size":40}}'
MNGS='{"three-nodes":{"name":"three-nodes","remote-access-user-name":"ec2-user","tags":{"group":"amazon-vpc-cni-k8s"},"release-version":"","ami-type":"AL2_x86_64","asg-min-size":3,"asg-max-size":3,"asg-desired-capacity":3,"instance-types":["m5.xlarge"],"volume-size":40}, "single-node":{"name":"single-node","remote-access-user-name":"ec2-user","tags":{"group":"amazon-vpc-cni-k8s"},"release-version":"","ami-type":"AL2_x86_64","asg-min-size":1,"asg-max-size":1,"asg-desired-capacity":1,"instance-types":["m5.16xlarge"],"volume-size":40}, "multi-node":{"name":"multi-node","remote-access-user-name":"ec2-user","tags":{"group":"amazon-vpc-cni-k8s"},"release-version":"","ami-type":"AL2_x86_64","asg-min-size":98,"asg-max-size":100,"asg-desired-capacity":98,"instance-types":["m5.xlarge"],"volume-size":40}}'
LARGE_SCALE=true
RUN_CONFORMANCE=false
else
Expand Down
12 changes: 6 additions & 6 deletions scripts/run-integration-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -216,13 +216,13 @@ if [[ $TEST_PASS -eq 0 && "$RUN_CONFORMANCE" == true ]]; then
fi

if [[ "$RUN_SCALE_TESTS" == true ]]; then
# $KUBECTL_PATH apply -f deploy-130-pods.yaml
# run_scale_test_130_pods
# $KUBECTL_PATH delete -f deploy-130-pods.yaml
$KUBECTL_PATH apply -f deploy-130-pods.yaml
run_scale_test_130_pods
$KUBECTL_PATH delete -f deploy-130-pods.yaml

# $KUBECTL_PATH apply -f deploy-730-pods.yaml
# run_scale_test_730_pods
# $KUBECTL_PATH delete -f deploy-730-pods.yaml
$KUBECTL_PATH apply -f deploy-730-pods.yaml
run_scale_test_730_pods
$KUBECTL_PATH delete -f deploy-730-pods.yaml

$KUBECTL_PATH apply -f deploy-5000-pods.yaml
run_scale_test_5000_pods
Expand Down

0 comments on commit 166a168

Please sign in to comment.