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 moreCategory: Kubernetes
kubectl cp example - copy files to and from kubernetes pod & containers
Kubectl cp command is most widely used to copy files between pods and local file system. It is more like SCP in Linux world to copy files between local to remote machines using ssh protocol. With kubectl cp you can perform the following tasks upload a file to the pod[...]
Read moreTerraform AKS Example - Creating Azure K8s Cluster | Devops Junction
Kubernetes is a Container Orchestration tool given to the world by Google. It changed the way applications are deployed managed and scaled. In our blog, we have written various introductory articles on how to get started with Containers and Kubernetes If you are new to Containers. read this article before[...]
Read moreKubectl Get Nodes with Instance Type and Arch - K8s | Devops Junction
In this post, we are going to give a quick command to list your worker nodes with their instance types and architecture. I have posted this for the Amazon EKS Kubernetes cluster but with slight modification, you can use the same approach for any other managed Kubernetes cluster too. While[...]
Read moreHow to restart all deployments in namespace - Kubectl | Devops Junction
Restart Namespace all Deployments after k8s v1.15 You can simply use the kubectl rollout restart command that takes care of restarting all the deployments in a namespace If you specify only the namespace and not a specific deployment, all the deployments in the namespace would be restarted kubectl rollout restart[...]
Read moreAWS EKS Load Balancer from Kubernetes Service | Devops Junction
In this article, we are going to see how to create internal and external load balancers using the Kubernetes service on EKS When we think about making an application or deployment available externally or internally over a Domain name We think of Kubernetes Ingress but that's not the only way to[...]
Read moreCreating EKS Cluster with Karpenter Auto scaling - Terraform | Kubernetes
Kubernetes has been a disruptive change in IT Infrastructure. It had been widely adopted across the industry Managed Kubernetes are the best choice if you do not want to face the hurdles of setting up K8s from scratch Unless you want to deep learn Kubernetes. AWS a market leader in[...]
Read moreSpringBoot Kubernetes Example - Jenkins & IBM Cloud | Devops Junction
In this article, we are going to see how to deploy the SpringBoot application to Kubernetes using Jenkins. The platform we are choosing is IBM Cloud. We are going to see SpringBoot Kubernetes Example setup on IBM Cloud using Jenkins Pipeline. We will be creating Docker images, setting up Kubernetes,[...]
Read moreGet CPU and Memory Usage of NODES and PODS - Kubectl | K8s
Ever since I started using Kubernetes I have always been on the pursuit of finding the right tools to monitor. and I did find a lot of products from the Open source community and here are my favourites Kube Prometheus Stack KubeCost Kubernetes Dashboard Lens IDE Kubewatch Jaeger Despite having[...]
Read moreHow to Get Images of all PODs and Deployments
Let's say you have two similar namespaces in your Kuberentes cluster and you want to compare the images of pods running on both these name spaces. Or Simply want to know what images are being used across the pods (or) deployments in your namespace Of course we are going to[...]
Read more