Git Vs Git Clone

Git Clone : Clone is to create a local copy of repository. On the other hand, git clone is used to download a repository (forked or original) to your local development machine. This is what actually gives you the codebase to work with. Git fork : creates a copy of a repository on your

Read More »

Top 10 Linux Command every Software Engineer should know.

top : The top command is used to show the active Linux processes. It provides a dynamic real-time view of the running system. Usually, this command shows the summary information of the system and the list of processes or threads which are currently managed by the Linux kernel. htop :

Read More »

Route53

What is Rote53 in AWS : Translates domain names (like www.example.com) into IP addresses (like 192.0.2.1). Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web service offered by AWS. It is used to manage domain names and route internet traffic to the appropriate resources within

Read More »

How do you expose pods/containers to outside world in Kubernetes

To expose Kubernetes pods and containers to the outside world, you typically use Services, specifically the NodePort or LoadBalancer types. NodePort exposes the service on each node’s IP at a static port, while LoadBalancer uses a cloud provider’s load balancer for external access         NodePort: Exposes the service on

Read More »
Scroll to Top