Showing posts with label AWS. Show all posts
Showing posts with label AWS. Show all posts

Sunday, August 23, 2020

Deploy multi-container application using Docker Compose

 

Hi Everyone, in this blog we will see how to deploy the multi-container applications using Docker Compose. 

Docker Compose is a tool for running multi-container docker applications. Usually, one container is used to host one service. Let's take a case where have a massive application where you have multiple services, in that case, we would need several containers for each service and containers will need to interact with each other. Creating it manually using the docker run command will be complicated.

Wednesday, August 12, 2020

Deploy microservice in AWS Kubernetes using EKSCTL


In this blog, you will see the magic of eksctl, a simple CLI tool for creating clusters on EKS - Amazon's new managed Kubernetes service for EC2. It is written in Go, and uses CloudFormation.

In my previous blog https://leogether.blogspot.com/2020/08/deploy-net-microservice-on-aws.html, we did all the steps manually to deploy the service in AWS Kubernetes using AWS management console with single command. 

Here we will see that all these steps will be done by one single command using eksctl

Lets get started.

Monday, August 10, 2020

Deploy .net microservice on AWS Kubernetes using AWS management console


Hi there, I am excited to share my second blog on deploying an app to AWS Kubernetes which is nothing but EKS. In this particular blog, I have taken this approach of manually creating EKS cluster using the AWS management console, just to learn how it works, which I feel is very important.

In my last blog, which was the very first blog I created, I talked about containerizing an application. If you haven't seen please go to this link:

https://leogether.blogspot.com/2020/08/containerizing-net-microservice.html?zx=5b6e13926dfa506

Before we can move on to hands-on I would like to highlight on pre-requisites and steps we are going to do, and also a bit of understanding of Kubernetes. 

To know about Kubernetes, please see my blog here:

 https://leogether.blogspot.com/2020/08/kubernetes-container-orchestration.html