CI/CD with AWS ECS and AWS CodePipeline | CodeCommit + CodeBuild + CodeDeploy

Поделиться
HTML-код
  • Опубликовано: 27 ноя 2024

Комментарии • 39

  • @ravi1341975
    @ravi1341975 5 месяцев назад

    It's really good with a clean explanation.looking forward more from you.

  • @maheshchengannagari1896
    @maheshchengannagari1896 6 месяцев назад

    A great video for people starting with the use case

  • @durgeshverma712
    @durgeshverma712 Год назад

    Very wonderful vdo ... Finally got whatever I m looking for.

  • @mallikarjunkonemane6908
    @mallikarjunkonemane6908 8 месяцев назад

    Very Very Nice Tutorial 🔝🔥🔥

  • @awsexpert70
    @awsexpert70 Год назад

    How someone can be that Great??
    Thanks alot 💮💮

  • @susmithakosuri6644
    @susmithakosuri6644 8 месяцев назад +1

    What if we have number of microservices? For example, a webserver, front-end and database. How does the buildspec.yml will look like? Do we need to have separate build steps? Its kinda confusing how to implement CI/CD for three tier architecture.

    • @codewithgauri
      @codewithgauri  8 месяцев назад

      We will create another project for this

  • @lovethisworld920
    @lovethisworld920 2 месяца назад

    Your tutorial are good and useful, can you make video for creating ecs pipeline through cloud formation, it would useful in real environment.

  • @SkandaRam
    @SkandaRam 6 месяцев назад

    It would have been much better if you could also show target groups and security groups in the same video
    but very well explained. It helped a lot
    just try to attach the configuration of the security groups and load balancers

  • @bhakta_rg
    @bhakta_rg 8 месяцев назад

    Hi Gauri, nice explanation. At 4:12 you said that the ECRRegistryFullAccess permissions policy should be attached to the IAM user that is configured to run the aws cli commands. Can we not attach the IAM policy to the ec2 instance directly so the ec2 instance gets the permissions from the IAM role? Isn't that a more secure way of calling AWS services from the ec2 instance?
    Also, this demo assumes you have the ECS cluster, service & task definition already created correct?

    • @codewithgauri
      @codewithgauri  5 месяцев назад

      Yes you're absolutely right...we can definitely go for the role

  • @noobxtrader
    @noobxtrader Год назад

    keep posting ..

  • @mshb0000
    @mshb0000 2 месяца назад

    Please increase the font size while using cmd terminal....

  • @vinvvinv7460
    @vinvvinv7460 Год назад +1

    Hi can you please make a video & explain the writing/structure of Ansible & Terraform in a simple manner & in layman's terms, like when & where to add spaces, hyphens, what is variable, etc it's a bit confusing ... please it's a request, do reply

    • @codewithgauri
      @codewithgauri  Год назад

      I am quite new to Ansible but I will be starting a new playlist for terraform soon....

  • @Truffles330
    @Truffles330 3 месяца назад

    When we are deploying the ECS using code pipeline on fargate it is showing error and not getting deployed. Have tried reaching you out on your linkedin ID but it says doesn't exist. Please advise

    • @codewithgauri
      @codewithgauri  3 месяца назад

      Can you please elaborate your error on my gmail? I am facing some issues with my LinkedIn account

    • @Truffles330
      @Truffles330 3 месяца назад

      @@codewithgauri code deployment failed and when checked in ECS it shows the health status is unhealthy and have to fix the load balancer. Although everything looks fine but the URL is not working. Listening on port 80 configured with http, when checked using the URL with https it is working but only when manually we are installing the nginx application it's not working automatically. I need to show you with screenshots. Can we set up a Google meet and have a discussion on this?

  • @Learn_IT_with_Azizul
    @Learn_IT_with_Azizul Год назад

    Awesome 😎 and useful content. Just a little request if you don’t mind that the word ‘okay’ repeatedly used not sounds good to the audience. Please try to avoid it. Thank you 🙏

  • @Vipul-x3t
    @Vipul-x3t Год назад

    Hi, Great videos. I am learning ECS from your video but there is a request as The task execution role is not coming. When did the role was created? Or the application load balancer.

    • @codewithgauri
      @codewithgauri  Год назад

      Actually you need to watch my video on ECS loadbalancer where I have shown everything in detail.

    • @Vipul-x3t
      @Vipul-x3t Год назад

      @@codewithgauri Yeah saw it. Understood. But the task execution role is still not clear. Please Make project on EKS as well.

    • @codewithgauri
      @codewithgauri  Год назад

      If you don't have any task execution role created then create one. It will give option for creating one. Will definitely try to make a video on EKS.

  • @shaikwasifahmed
    @shaikwasifahmed Год назад

    Hi Mam
    ..Iam Working on the ci/cd peoject on aws code pipeline..iam facing issue with the iamge tag..i try to reslove as yu shown in the video. Still pipeline is failing..since 3 hours iam stuck here..can you pls help on thus

    • @codewithgauri
      @codewithgauri  Год назад

      Can we connect on LinkedIn to resolve this?...my LinkedIn profile is available in the description

    • @shaikwasifahmed
      @shaikwasifahmed Год назад

      @codewithgauri Sure...Thanks a Lott..

    • @shaikwasifahmed
      @shaikwasifahmed Год назад

      Tomorrow I need to Submit this Project for one of the Interview..It would be a great help...Thanks

  • @sarigarevanth9649
    @sarigarevanth9649 Год назад

    Hi getting error at deploy stage ecs in service it showing insuffiecnt memory
    Could you please rectify this error

    • @codewithgauri
      @codewithgauri  Год назад

      Hey Sariga, I think the error is due to insufficient memory in the ecs task definition.

  • @SaurabhPandey-ww2uq
    @SaurabhPandey-ww2uq 2 месяца назад

    Hi Gauri, can you please clarify why you have used docker push command two times in the post build commands?
    post_build:
    commands:
    - echo Build completed on `date`
    - echo Pushing the Docker images...
    - docker push $REPOSITORY_URI:$IMAGE_TAG
    - docker push $REPOSITORY_URI:$IMAGE_TAG
    - echo Writing image definitions file...
    - printf '[{"name":"%s","imageUri":"%s"}]' $CONTAINER_NAME $REPOSITORY_URI:$IMAGE_TAG > imagedefinitions.json