A Pod is a collection of Containers and the volumes combined together as a single environment. Pods are the smallest deployable artifact or entity in a Kubernetes cluster. Majorly PODs consist of only one application container. But in special scenarios, multiple closely dependent applications can run together on the same[...]
Read moreAuthor: Sarav AK
Athena SQL Query Examples for ALB troubleshooting | Devops Junction
ALB(Application Load Balancer) Logs are a great asset when it comes to troubleshooting. It provides a finer detail of the HTTP request processed by the ALB and sent to the target. ALB logs provide various fields and data which are essential to understanding the request flow. You can use it[...]
Read moreKubectl Get Nodes Sort by AGE, IP and more | Devops Junction
In this short article, we are going to see some command variations and options with kubectl get nodes to sort the nodes by age ( creation time), last transition time, IP address etc. let us see the quick Kubectl command to Get nodes in the cluster sorted by their Age[...]
Read moreAWS ELB Diagram generator with Python Boto & Diagrams | Devops Junction
Creating Flow Charts is an essential element of Infrastructure Management and System Architecture. Creating Diagrams from Code is a remarkable breakthrough In recent times. Python Diagrams is indeed a leader in this space and you can create your cloud diagrams in few minutes. All you need is some knowledge of[...]
Read moreEC2Search CLI tool - Search EC2 instance by name | Devops Junction
When you are working with AWS Cloud infrastructure and when you have 100s of instances to manage in multiple accounts. You might know how hard it is to get the private IP or the public IP info or any other details of a particular EC2 instance Let's say your entire[...]
Read moreAnsible SystemD module Examples - Devops Junction
Ansible SystemD module helps to control the systemd units such as services and timers created on the Linux server. SystemD is a daemon that manages the services and timer units on the Linux system and we mostly interact with it using the following ways service file systemctl command journalctl command[...]
Read moreKubernetes restart daemonset - kubectl | Devops Junction
In this quick article, let us learn how to restart the Kubernetes DaemonSet and all the pods created by the DaemonSet. Before we move on to the objective, here are some basics. real quick. DaemonSet is to deploy a specific application/feature to your Kubernetes cluster and to make sure it[...]
Read morekubectl exec examples - Execute Shell commands into a POD | K8s
In this article, we will learn in detail how to exec shell commands on the container or pod using kubectl. We will learn how to execute bash or any shell commands using kubectl and exec any command into a container or pod Let us start, Before we begin, all the[...]
Read moreHow to check Kubernetes and Kubectl Version | Devops Junction
How to check the Kubernetes and Kubectl Version using the kubectl command line that's the objective of this article. As you know the kubectl is a command line tool for communicating with a Kubernetes cluster's control plane, using the Kubernetes API. Provided by Kubernetes itself if you are new to Kubectl and[...]
Read moreAWS S3 Sync Examples - Sync S3 buckets AWS CLI
In this article, we are going to see how to use the powerful aws s3 sync CLI command. In the Linux world, if we want to compare two directories and copy the files on the same machine or between two machines over the remote (ssh) we use rsync Those who[...]
Read more