AWS

Redirect a domain to another domain using Amazon Route 53

Posted on

In this blog, we will explore how to redirect a domain to another domain using Amazon Route 53. Checkout my Youtube video on this blog. Requirement You have a domain abc.com and DNS is configured on Route 53 You have another domain abc.ca which needs to redirect to abc.com Solution For domain forwarding, you need […]

Please follow and like us:
AWS

How to update AWS ECS service

Posted on

To update a ECS service using script you can use the below command Checkout my YouTube video on this blog. Parameters required Cluster Name Service Name aws ecs update-service –cluster ecsdeployment –service ecsdeployment-WebService-AP1WCLw9qhgn –force-new-deployment –region us-east-1 In some cases, this command didn’t update the service and if you need to run just one container for […]

Please follow and like us:
AWS

How to use one AWS loadbalancer for multiple services

Posted on

When you have multiple applications which are running inside an ECS cluster or anywhere else then how can you use just one loadbalancer for all the applications. Using separate loadbalancer for each of the services/applications will be more expensive as each LB cost around $15/month and if you have 5 services then this would be […]

Please follow and like us:
Docker

Deploy Docker container in ECS using docker compose

Posted on

In this blog, we will deploy a container using docker compose in ECS cluster. You can follow this blog to deploy a docker container in ECS directly. Checkout my Youtube video on this blog. Prerequisite Configure aws credential Install aws cli version 2 Clone this git repo Local workstation  Agenda: Create new docker context Run […]

Please follow and like us:
Helm

How to add dependency in Helm

Posted on

In this blog, we will be deploying this guestbook application using helm and add the Redis as a dependency. Checkout my Youtube video on this blog Prerequisite Kubernetes Cluster Setup Clone this git repo Setup a helm project helm create guestbookrm -rf guestbook/templates/tests Adding a Redis Chart dependency Chart dependencies are used to install other […]

Please follow and like us:
AWS

Demo of creating an AWS Lambda Function

Posted on

In this blog, we will run a Demo of creating an AWS Lambda Function which will convert a csv file into a json file. Prerequisite Clone this git repo Refer this blog for basic understanding of AWS Lambda For this we will use S3 bucket as a source where we will store the csv file […]

Please follow and like us:
AWS

AWS Lambda for beginners with example

Posted on

In this blog we will learn about AWS Lambda and create a lambda function. Check out my Youtube video on this article. What is Serverless Compute ? Serverless compute is a cloud computing execution model in which the AWS Cloud acts as the server and dynamically manages the allocation of machine resources. AWS Lambda is the […]

Please follow and like us:
Helm

How to create your first custom Helm Chart

Posted on

In this blog, we will explore basics of helm and how to create a custom helm chart. Checkout my Youtube video on this article. Prerequisite: Helm should be installed Agenda: Why Helm ? What is Helm ? Helm basic commands How Helm communicates with your Kubernetes Cluster How to find chart’s details Create a custom helm chart […]

Please follow and like us: