In my previous blog https://www.leogether.com/2020/09/creating-kubernetes-cluster-with-azure.htmlI created the Azure Container Registry and Kubernetes cluster using Terraform and Azure DevOps. I would encourage you to read my previous blog first before reading this.In this blog, I will show you...
Monday, September 14, 2020
Sunday, September 13, 2020
Creating Kubernetes cluster with Azure Devops and terraform
In this blog, we will look at how to create infrastructure in Azure using Terraform in a deployment pipeline using Azure. Terraform is an open-source tool for building, changing, and versioning infrastructure safely and efficiently.I will guide you through the process of creating a Kubernetes...
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...
Thursday, August 13, 2020
Kubernetes - the container orchestration engine
I talked about dockers and containers in one of my blogs: https://leogether.blogspot.com/2020/08/docker-basics.html. Now let's talk about what is Kubernetes and why do we need it?. Containers are fast, reliable, light-weighted, and scalable.You can easily scale 1 container to many...
Dockers and Containers
An application works in the Dev environment but the same fails in testing or prod environment due to different computing environments. Docker is a container-based technology to create, deploy, and run applications by using containers.They are lightweight alternatives to VMs, uses host OS,...
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...
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.
...
Sunday, August 9, 2020
Containerizing a .net microservice
Welcome visitor! Thank you for stopping by. This is the first blog of mine and I hope you like it. I am really excited about it. Please bear with me and I promise to get better every time.
In this article, you are going to see a complete tutorial on how can we can containerize a .net...