Skip to content

Commit

Permalink
Bugfix for ecs deploy utility (#2022)
Browse files Browse the repository at this point in the history
* ecs deploy fix.
  • Loading branch information
sonoransun authored Sep 4, 2024
1 parent ad08f27 commit 4dcbe5d
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ deploy_qa:
AWS_DEFAULT_REGION: $AWS_DEFAULT_REGION
GITHUB_TOKEN: $GITHUB_TOKEN
script:
- pip install botocore==1.33.13
- pip install boto3==1.33.13
- pip install ecs-deploy==1.14.0
- pip install urllib3==2.0.6
- pip install botocore==1.31.62
- pip install boto3==1.28.62
- pip install ecs-deploy==1.15.0
- pip install awscli==1.31.13
- alias aws='docker run -e AWS_ACCESS_KEY_ID -e AWS_SECRET_ACCESS_KEY -e AWS_DEFAULT_REGION --rm amazon/aws-cli'
- aws ssm get-parameters-by-path --region $AWS_DEFAULT_REGION --path /qa/check-api/ --recursive --with-decryption --output text --query "Parameters[].[Name]" | sed -E 's#/qa/check-api/##' > env.qa.names
Expand Down Expand Up @@ -105,9 +106,10 @@ deploy_live:
AWS_DEFAULT_REGION: $AWS_DEFAULT_REGION
GITHUB_TOKEN: $GITHUB_TOKEN
script:
- pip install botocore==1.33.13
- pip install boto3==1.33.13
- pip install ecs-deploy==1.14.0
- pip install urllib3==2.0.6
- pip install botocore==1.31.62
- pip install boto3==1.28.62
- pip install ecs-deploy==1.15.0
- pip install awscli==1.31.13
- alias aws='docker run -e AWS_ACCESS_KEY_ID -e AWS_SECRET_ACCESS_KEY -e AWS_DEFAULT_REGION --rm amazon/aws-cli'
- aws ssm get-parameters-by-path --region $AWS_DEFAULT_REGION --path /live/check-api/ --recursive --with-decryption --output text --query "Parameters[].[Name]" | sed -E 's#/live/check-api/##' > env.live.names
Expand Down

0 comments on commit 4dcbe5d

Please sign in to comment.