AWS Devops - | Pipeline | - HandsOn - CodeCommit, CodeBuild , ECS , CodePipeline

In these HandsOn, We are learn, how We can use Code Commit, Code Build , ECS & ECR And Code Pipeline in the DevOps Culture

CODE COMMIT

AWS CodeCommit is a fully-managed source control service that makes it easy for teams to host secure and scalable Git repositories.

Clone the code and push into code commit repo -

Requried Permision need to assign the user -

After that Goto Security Credentials

ECS -Elastic Container Services

Amazon Elastic Container Service (ECS) is a fully managed container orchestration service provided by Amazon Web Services (AWS). It simplifies the process of deploying, managing, and scaling containerized applications using Docker containers. ECS enables to run and scale containerized applications on a cluster of Amazon EC2 instances or using AWS Fargate, which is a serverless compute engine for containers.

Create a Repo on the ECS .

buildspec.yml

The buildspec.yml file is commonly used in the context of AWS CodeBuild, which is a fully managed continuous integration service provided by Amazon Web Services (AWS). This file defines the build phases and commands that CodeBuild should run when building your project.

version: 0.2

phases:
  install:
    runtime-versions:
      nodejs: latest
    commands:
      - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://127.0.0.1:2375 --storage-driver=overlay2 &
      - timeout 15 sh -c "until docker info; do echo .; sleep 1; done"
  pre_build:
    commands:
      - echo log in to Amazon ECR...
      - aws --version
      - echo $AWS_DEFAULT_REGION
      - aws ecr get-login-password --region us-east-1 | docker login --username AWS  --password-stdin <AWS Account ID>.dkr.ecr.us-east-1.amazonaws.com
      - REPOSITORY_URI=997880274181.dkr.ecr.us-east-1.amazonaws.com/aws-ecs-docker
      - COMMIT_HASH=$(echo $CODEBUILD_RESOLVED_SOURCE_VERSION | cut -c 1-7)
      - IMAGE_TAG=${COMMIT_HASH:=latest} 
  build:
    commands:
      - echo Build started on `date`
      - echo Building the Docker image.
      - docker build -t $REPOSITORY_URI:latest .
      - docker tag $REPOSITORY_URI:latest $REPOSITORY_URI:$IMAGE_TAG
  post_build:
    commands:
      - echo Build completed on `date`
      - docker push $REPOSITORY_URI:latest
      - docker push $REPOSITORY_URI:$IMAGE_TAG
      - echo write definitions file...
      - printf '[{"name":"exp-code-pipeline","imageUri":"%s"}]' $REPOSITORY_URI:$IMAGE_TAG > imagedefinitions.json
artifacts:
  files: imagedefinitions.json

CODE BUILD

AWS CodeBuild is a fully managed continuous integration service provided by Amazon Web Services (AWS). It is designed to compile source code, run tests, and produce deployable artifacts. CodeBuild scales automatically, allowing you to build, test, and deploy applications quickly.

Buildspec

Buildspec name - optionalBy default, CodeBuild looks for a file named buildspec.yml in the source code root directory. If your buildspec file uses a different name or location, enter its path from the source root here (for example, buildspec-two.yml or configuration/buildspec.yml).

  1. Open the IAM console at https://console.aws.amazon.com/iam/.

  2. In the navigation pane, click "Roles".

  3. Find and click on the "codebuild-AWS-ECS-service-role" role.

  4. Click on the "Attach policies" button.

  5. In the "Filter policies" search box, type "ecr" to find policies related to ECR.

  6. Check the box next to the "AmazonEC2ContainerRegistryFullAccess" policy, which includes the "ecr:GetAuthorizationToken" action.

  7. Click on the "Attach policy" button.

CODE PIPELINE

AWS CodePipeline is a fully managed continuous delivery service that automates the build, test, and deployment phases of your release process. It allows you to create and model your release process, automate the execution of your builds and tests, and deliver application or infrastructure changes in a reliable and efficient manner.

running the pipeline -

Last updated