Skip to content

Commit

Permalink
fix EKS tests setup in ECS tests stage
Browse files Browse the repository at this point in the history
  • Loading branch information
zhonghui12 committed Jun 9, 2022
1 parent 0f715dd commit 0740e92
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion buildspec_load_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ phases:
- python -m venv venv
- source venv/bin/activate
- pip install -r ./load_tests/requirements.txt
- aws eks update-kubeconfig --name $EKS_CLUSTER_NAME
- |
if [ "${PLATFORM}" == "EKS" ]; then
aws eks update-kubeconfig --name $EKS_CLUSTER_NAME
fi
# Create and set up related testing resources
- python ./load_tests/load_test.py create_testing_resources
- source ./load_tests/setup_test_environment.sh
Expand Down

0 comments on commit 0740e92

Please sign in to comment.