The main topics I practiced were: 1. Checking Kubernetes Nodes I started by checking the nodes in the cluster: kubectl get nodes Example: NAME STATUS ROLES VERSIONcontrolplane Ready control-plane v1.35.1node01 Ready <none> v1.35.1 My practice cluster contains two nodes: controlplanenode01 Both nodes were in the Ready state. 2. Working with Node Labels Next, I practiced Kubernetes node labels. First, I checked the existing labels: kubectl get nodes –show-labels Then I

Read More

🌐 Introduction Kubernetes is the most popular container orchestration platform used by companies worldwide. As a CKA (Certified Kubernetes Administrator) candidate, one of the most important skills is building a Kubernetes cluster from scratch. In this lab, we will: βœ… Create a Kubernetes Cluster using Kubeadmβœ… Install Containerd Runtimeβœ… Configure Kernel Modulesβœ… Install Kubernetes Componentsβœ… Deploy Calico Network Pluginβœ… Join Worker Nodesβœ… Verify Cluster Health ☁️ Step 1: Create a

Read More

Docker has transformed the way applications are developed, shipped, and deployed. Instead of installing software directly on servers, developers now use lightweight containers that package applications along with all their dependencies. This makes applications portable, fast, and easy to manage. In this blog, we will learn the fundamentals of Docker, important container terminologies, and a hands-on lab to launch and manage containers using Docker on an AWS EC2 instance. What

Read More

IAM is a service provided by Amazon Web Services that helps you securely control access to your AWS resources. πŸ“– Simple Definition πŸ‘‰ IAM = Identity + Access Control System πŸ”‘ Core Components of IAM πŸ‘€ Users πŸ‘₯ Groups πŸ“œ Policies πŸ”„ Roles πŸ” How IAM Works 🧠 Real Example πŸ‘‰ IAM controls these permissions βš™οΈ One-Line Summary πŸ‘‰ IAM = Control over who can access AWS and what they

Read More

During installation the Magento 2.3.4 using Terminal in Ubuntu in my local system. I got the PHP Fatal error: Uncaught Error: Call to undefined function xdebug_disable() in vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/_bootstrap.php:73 To remove this Error you have to follow steps:- Step1:- We have to go to the vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/_bootstrap.php:73.

Read More