Skip to content

Latest commit

 

History

History
136 lines (117 loc) · 4.3 KB

README.md

File metadata and controls

136 lines (117 loc) · 4.3 KB

DevOps Challenge/SRE

Diagram

Repositories used in this project:

Step 1.0: Deploy VPC infrastructure and ECS cluster.

Requisites for running this project:

  • Git
  • Docker
  • Docker-compose
  • Make
  • AWS CLI version 2

1.1: Configure credential for AWS.

Create .env file to AWS credentials with access key and secret key.

# AWS environment
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=

1.2: Create ECS cluster and network infrastructure.

Create a terraform.tf file with the following contents. If you prefer, change the environment variable name.

provider "aws" {
  region  = "us-east-2"
  version = "= 3.0"
}
terraform {
  backend "s3" {
    bucket = "your-bucket-here"
    key    = "key-terraform-.tfstate"
    region = "us-east-2"
  }
}

module "dev_cluster" {
  source         = "git@github.com:EzzioMoreira/module-factory-floor.git?ref=v1.1"
  environment    = "development"
  vpc_cidr_block = "10.10.0.0/16"
}

output "ecs_cluster_name" {
  value = module.dev_cluster.ecs_cluster_name
}

output "vpc_id" {
  value = module.dev_cluster.vpc_id
}

output "subnet_private" {
  value = module.dev_cluster.subnet_private
}

output "subnet_public" {
  value = module.dev_cluster.subnet_public
}

1.3: Run the following commands to deploy:

make help:          ## Run make help.
terraform-init:     ## Run terraform init to download all necessary plugins
terraform-plan:     ## Exec a terraform plan and puts it on a file called plano
terraform-apply:    ## Uses plano to apply the changes on AWS.
terraform-destroy:  ## Destroy all resources created by the terraform file in this repo.

Step 2.0: Deploy Container Image in AWS ECR:

2.1 Configure credential for AWS.

Create .env file to AWS credentials with access key and secret key.

# AWS environment
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=

2.2: Configure your variables in Makefile file.

  • AWS_ACCOUNT=you_account-id
  • APP_IMAGE=application_name
  • AWS_REGIO=you_aws_region

2.3: Run the following commands to deploy:

make help:          ## Run make help.
ecr-build:          ## ECR-step:1 Build your Docker image.
ecr-login:          ## ECR-step:2 Retrieve an authentication token and authenticate your Docker client to your registry.
ecr-tag:            ## ECR-step:3 Tag your image so you can push the image to this repository.
ecr-push:           ## ECR-step:4 Push this image to your newly created AWS repository.

Step 3.0: Deploy container in AWS ECS Fargate.

Requisites for running this project:

  • Git
  • Docker
  • Docker-compose
  • Make
  • AWS CLI version 2

3.1: Clone the following repository:

3.2 Configure credential for AWS.

Create .env file to AWS credentials with access key and secret key.

# AWS environment
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=

3.3 Configure your variables in Makefile file.

  • AWS_ACCOUNT=you_account-id
  • APP_IMAGE=application_name
  • AWS_REGIO=you_aws_region

3.4: Run the following commands to deploy:

make help:          ## Run make help.
terraform-init:     ## Run terraform init to download all necessary plugins
terraform-plan:     ## Exec a terraform plan and puts it on a file called plano
terraform-apply:    ## Uses plano to apply the changes on AWS.
terraform-destroy:  ## Destroy all resources created by the terraform file in this repo.

Step 4.0: Deploy container in your desktop.

4.1: Clone the following repository:

4.2: Run the following commands to deploy container:

make help:          ## Run make help.
docker-run-local:   ## Run the container on the local machine.
docker-stop-local:  ## Destroy the container on the local machine.