-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
148 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
name: Deploy Koski | ||
on: | ||
workflow_call: | ||
inputs: | ||
commithash: | ||
description: "Commit hash (version) of the image to deploy" | ||
type: string | ||
required: true | ||
environment: | ||
description: "Target environment (dev/qa/prod)" | ||
type: string | ||
required: true | ||
env: | ||
DOCKER_BUILDKIT: 1 | ||
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | ||
|
||
jobs: | ||
deploy: | ||
name: Deploy | ||
runs-on: ubuntu-22.04 | ||
environment: ${{ inputs.environment }} | ||
permissions: | ||
id-token: write | ||
contents: read | ||
packages: write | ||
steps: | ||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
role-to-assume: ${{ secrets.DEPLOY_ROLE }} | ||
role-duration-seconds: 3600 | ||
role-session-name: KoskiDeployment-${{ inputs.environment }}-${{ inputs.commithash }} | ||
aws-region: eu-west-1 | ||
|
||
- name: Login to Amazon ECR | ||
id: login-deployment | ||
uses: aws-actions/amazon-ecr-login@v1 | ||
with: | ||
registries: ${{ secrets.ECR_ACCOUNT_ID }} | ||
mask-password: "true" | ||
|
||
- name: Get task definition ARN | ||
id: get-taskdef-arn | ||
run: | | ||
echo "taskdef-arn=$(aws ssm get-parameter --name /koski/task-definition-skeleton --output text --query 'Parameter.Value')" >> $GITHUB_OUTPUT | ||
- name: Get task definition skeleton | ||
run: | | ||
aws ecs describe-task-definition --task-definition ${{ steps.get-taskdef-arn.outputs.taskdef-arn }} --query 'taskDefinition' > task-definition.json | ||
- name: Render Amazon ECS task definition | ||
id: task-def | ||
uses: aws-actions/amazon-ecs-render-task-definition@v1 | ||
with: | ||
task-definition: task-definition.json | ||
container-name: KoskiContainer | ||
image: ${{ steps.login-deployment.outputs.registry }}/koski:${{ inputs.commithash }} | ||
|
||
- name: Get AppSpec template | ||
run: | | ||
aws ssm get-parameter --name /koski/appspec-template --output text --query 'Parameter.Value' > appspec.json | ||
- name: Deploy using CodeDeploy | ||
uses: aws-actions/amazon-ecs-deploy-task-definition@v2 | ||
with: | ||
task-definition: ${{ steps.task-def.outputs.task-definition }} | ||
service: koski | ||
cluster: koski-cluster | ||
wait-for-service-stability: true | ||
codedeploy-appspec: appspec.json | ||
codedeploy-application: koski | ||
codedeploy-deployment-group: koski-deployment-group | ||
|
||
- name: Get raportointikanta-loader loader task definition ARN | ||
id: get-raportointikanta-loader-taskdef-arn | ||
run: | | ||
echo "taskdef-arn=$(aws ssm get-parameter --name /koski/raportointikanta-loader/task-definition-skeleton --output text --query 'Parameter.Value')" >> $GITHUB_OUTPUT | ||
- name: Get task definition skeleton | ||
run: | | ||
aws ecs describe-task-definition --task-definition ${{ steps.get-raportointikanta-loader-taskdef-arn.outputs.taskdef-arn }} --query 'taskDefinition' > raportointikanta-loader-task-definition.json | ||
- name: Render Amazon ECS task definition | ||
id: raportointikanta-loader-task-def | ||
uses: aws-actions/amazon-ecs-render-task-definition@v1 | ||
with: | ||
task-definition: raportointikanta-loader-task-definition.json | ||
container-name: RaportointikantaLoaderContainer | ||
image: ${{ steps.login-deployment.outputs.registry }}/koski:${{ inputs.commithash }} | ||
|
||
- name: Deploy Amazon ECS task definition | ||
id: raportointikanta-loader-taskdef-deploy | ||
uses: aws-actions/amazon-ecs-deploy-task-definition@v2 | ||
with: | ||
task-definition: ${{ steps.raportointikanta-loader-task-def.outputs.task-definition }} | ||
cluster: koski-cluster | ||
|
||
- name: Write task definition ARN to parameter store | ||
env: | ||
TASKDEF_ARN: ${{ steps.raportointikanta-loader-taskdef-deploy.outputs.task-definition-arn }} | ||
run: aws ssm put-parameter --overwrite --name /koski/raportointikanta-loader/task-definition --type String --value ${TASKDEF_ARN} | ||
|
||
- name: Get ytr-data-loader loader task definition ARN | ||
id: get-ytr-data-loader-taskdef-arn | ||
run: | | ||
echo "taskdef-arn=$(aws ssm get-parameter --name /koski/ytr-data-loader/task-definition-skeleton --output text --query 'Parameter.Value')" >> $GITHUB_OUTPUT | ||
- name: Get task definition skeleton | ||
run: | | ||
aws ecs describe-task-definition --task-definition ${{ steps.get-ytr-data-loader-taskdef-arn.outputs.taskdef-arn }} --query 'taskDefinition' > ytr-data-loader-task-definition.json | ||
- name: Render Amazon ECS task definition | ||
id: ytr-data-loader-task-def | ||
uses: aws-actions/amazon-ecs-render-task-definition@v1 | ||
with: | ||
task-definition: ytr-data-loader-task-definition.json | ||
container-name: YtrDataLoaderContainer | ||
image: ${{ steps.login-deployment.outputs.registry }}/koski:${{ inputs.commithash }} | ||
|
||
- name: Deploy Amazon ECS task definition | ||
id: ytr-data-loader-taskdef-deploy | ||
uses: aws-actions/amazon-ecs-deploy-task-definition@v2 | ||
with: | ||
task-definition: ${{ steps.ytr-data-loader-task-def.outputs.task-definition }} | ||
cluster: koski-cluster | ||
|
||
- name: Write task definition ARN to parameter store | ||
env: | ||
TASKDEF_ARN: ${{ steps.ytr-data-loader-taskdef-deploy.outputs.task-definition-arn }} | ||
run: aws ssm put-parameter --overwrite --name /koski/ytr-data-loader/task-definition --type String --value ${TASKDEF_ARN} | ||
|
||
- name: Report task ready | ||
uses: ravsamhq/notify-slack-action@95a35215cdf7ab510d2cdd20ae94f342d212a1a1 | ||
if: always() | ||
with: | ||
status: ${{ job.status }} | ||
notification_title: ${{ inputs.environment }} install {status_message} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.