fix: ECS Deployment update #1
Workflow file for this run
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
name: Deploy Service Job | ||
# Controls when the action will run. Triggers the workflow on push or pull request | ||
on: | ||
workflow_call: | ||
inputs: | ||
environment: | ||
required: true | ||
type: string | ||
terraform_workspace: | ||
required: true | ||
type: string | ||
service_name: | ||
required: true | ||
type: string | ||
docker_image: | ||
required: true | ||
type: string | ||
sentry_project: | ||
required: false | ||
type: string | ||
New_Relic_GUID: | ||
required: false | ||
type: string | ||
deploy_sentry_release: | ||
required: false | ||
default: false | ||
type: boolean | ||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
infrastructure_data: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 80 | ||
environment: ${{ inputs.environment }} | ||
env: | ||
TF_WORKSPACE: ${{ inputs.terraform_workspace }} | ||
permissions: | ||
contents: read | ||
deployments: write | ||
outputs: | ||
services_to_deploy: ${{ steps.terraform.outputs.queue_workers_services }} | ||
ecs_cluster: ${{ steps.terraform.outputs.ecs_cluster }} | ||
aws_region: ${{ steps.terraform.outputs.aws_region }} | ||
steps: | ||
- run: echo "Deploying ${{ inputs.service_name }} to ${{ inputs.terraform_workspace }} And Docker Tag ${{ inputs.docker_image }}" | ||
- name: Checkout cloud infra | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: novuhq/cloud-infra | ||
token: ${{ secrets.GH_PACKAGES }} | ||
path: cloud-infra | ||
- name: Terraform setup | ||
uses: hashicorp/setup-terraform@v3 | ||
with: | ||
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }} | ||
terraform_version: 1.5.5 | ||
terraform_wrapper: false | ||
- name: Terraform Init | ||
working-directory: cloud-infra/terraform/novu/aws | ||
run: terraform init | ||
- name: Replace dash with underscore in service_name | ||
id: replace_dash | ||
run: echo "service_name_under=$(echo '${{ inputs.service_name }}' | tr '-' '_')" >> $GITHUB_ENV | ||
- name: Terraform get output | ||
working-directory: cloud-infra/terraform/novu/aws | ||
if: inputs.service_name != 'worker' | ||
id: terraform | ||
env: | ||
SERVICE_NAME: ${{ inputs.service_name_under }} | ||
run: | | ||
echo "ecs_container_name=$(terraform output -json ${{ env.SERVICE_NAME }}_ecs_container_name | jq -r .)" >> $GITHUB_ENV | ||
echo "ecs_service=$(terraform output -json ${{ env.SERVICE_NAME }}_ecs_service | jq -r .)" >> $GITHUB_ENV | ||
echo "ecs_cluster=$(terraform output -json ${{ env.SERVICE_NAME }}_ecs_cluster | jq -r .)" >> $GITHUB_ENV | ||
echo "task_name=$(terraform output -json ${{ env.SERVICE_NAME }}_task_name | jq -r .)" >> $GITHUB_ENV | ||
echo "aws_region=$(terraform output -json aws_region | jq -r .)" >> $GITHUB_ENV | ||
- name: Terraform get output | ||
working-directory: cloud-infra/terraform/novu/aws | ||
if: inputs.service_name == 'worker' | ||
id: terraform | ||
run: | | ||
echo "queue_workers_services=$(terraform output -json queue_workers_services)" >> $GITHUB_OUTPUT | ||
echo "ecs_cluster=$(terraform output -json worker_ecs_cluster | jq -r .)" >> $GITHUB_OUTPUT | ||
echo "aws_region=$(terraform output -json aws_region | jq -r .)" >> $GITHUB_OUTPUT | ||
deploy_service: | ||
if: inputs.service_name == 'worker' | ||
needs: | ||
- infrastructure_data | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 80 | ||
environment: ${{ inputs.environment }} | ||
env: | ||
TF_WORKSPACE: ${{ inputs.terraform_workspace }} | ||
permissions: | ||
contents: read | ||
deployments: write | ||
strategy: | ||
matrix: | ||
worker: ${{fromJson(needs.infrastructure_data.outputs.services_to_deploy)}} | ||
steps: | ||
- run: echo "Deploying ${{ inputs.service_name }} to ${{ inputs.terraform_workspace }} And Docker Tag ${{ inputs.docker_image }}" | ||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: ${{ needs.infrastructure_data.outputs.aws_region }} | ||
- name: Download task definition | ||
run: | | ||
aws ecs describe-task-definition --task-definition ${{ matrix.worker.task_name }} \ | ||
--query taskDefinition > task-definition.json | ||
- name: Render Amazon ECS task definition | ||
id: render-web-container | ||
uses: aws-actions/amazon-ecs-render-task-definition@v1 | ||
with: | ||
task-definition: task-definition.json | ||
container-name: ${{ matrix.worker.container_name }} | ||
image: ${{ inputs.docker_image }} | ||
- name: Deploy to Amazon ECS service | ||
uses: aws-actions/amazon-ecs-deploy-task-definition@v1 | ||
with: | ||
task-definition: ${{ steps.render-web-container.outputs.task-definition }} | ||
service: ${{ matrix.worker.service }} | ||
cluster: ${{ needs.infrastructure_data.outputs.ecs_cluster }} | ||
wait-for-service-stability: true | ||
deploy_service: | ||
if: inputs.service_name != 'worker' | ||
needs: | ||
- infrastructure_data | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 80 | ||
environment: ${{ inputs.environment }} | ||
env: | ||
TF_WORKSPACE: ${{ inputs.terraform_workspace }} | ||
permissions: | ||
contents: read | ||
deployments: write | ||
steps: | ||
- run: echo "Deploying ${{ inputs.service_name }} to ${{ inputs.terraform_workspace }} And Docker Tag ${{ inputs.docker_image }}" | ||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: ${{ env.aws_region }} | ||
- name: Download task definition | ||
run: | | ||
aws ecs describe-task-definition --task-definition ${{ env.task_name }} \ | ||
--query taskDefinition > task-definition.json | ||
- name: Render Amazon ECS task definition | ||
id: render-web-container | ||
uses: aws-actions/amazon-ecs-render-task-definition@v1 | ||
with: | ||
task-definition: task-definition.json | ||
container-name: ${{ env.ecs_container_name }} | ||
image: ${{ inputs.docker_image }} | ||
- name: Deploy to Amazon ECS service | ||
uses: aws-actions/amazon-ecs-deploy-task-definition@v1 | ||
with: | ||
task-definition: ${{ steps.render-web-container.outputs.task-definition }} | ||
service: ${{ env.ecs_service }} | ||
cluster: ${{ env.ecs_cluster }} | ||
wait-for-service-stability: true | ||
post-deploy: | ||
needs: | ||
- infrastructure_data | ||
- deploy_service | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
deployments: read | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: get-npm-version | ||
if: ${{ inputs.deploy_sentry_release }} | ||
id: package-version | ||
uses: martinbeentjes/npm-get-version-action@main | ||
with: | ||
path: apps/${{ inputs.sentry_project }} | ||
- name: Create Sentry release | ||
if: ${{ inputs.deploy_sentry_release }} | ||
uses: getsentry/action-release@v1 | ||
env: | ||
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | ||
SENTRY_ORG: novu-r9 | ||
SENTRY_PROJECT: ${{ inputs.sentry_project }} | ||
with: | ||
version: ${{ steps.package-version.outputs.current-version}} | ||
version_prefix: v | ||
environment: prod | ||
ignore_empty: true | ||
ignore_missing: true | ||
- name: Set New Relic Region | ||
if: ${{ inputs.New_Relic_GUID }} | ||
id: set_region | ||
run: | | ||
if [[ "${{ env.aws_region }}" == *"us"* ]]; then | ||
echo "New_Relic_Region=US" >> ${GITHUB_ENV} | ||
else | ||
echo "New_Relic_Region=EU" >> ${GITHUB_ENV} | ||
fi | ||
shell: bash | ||
- name: New Relic Application Deployment Marker | ||
if: ${{ inputs.New_Relic_GUID }} | ||
uses: newrelic/[email protected] | ||
with: | ||
region: ${{ env.New_Relic_Region }} | ||
apiKey: ${{ secrets.NEW_RELIC_API_KEY }} | ||
guid: ${{ inputs.New_Relic_GUID }} | ||
version: "v${{ steps.package-version.outputs.current-version }}" | ||
user: "${{ github.actor }}" | ||