Posts

Top 5 Kubectl Commands Every DevOps Engineer Needs! ☸️⚡️

Are you learning Kubernetes and struggling with kubectl commands? πŸ€” In this video, we break down the Top 5 kubectl commands every DevOps Engineer must know to manage and troubleshoot Kubernetes clusters 1. kubectl get pods The kubectl get pods command is used to list all the pods running in the current namespace. Pods are the smallest deployable units in Kubernetes, and they can contain one or more containers. This command provides a quick overview of the status of each pod. 2. kubectl get nodes The kubectl get nodes command retrieves information about the nodes in the Kubernetes cluster. Nodes are the physical or virtual servers that run the pods. This command helps in monitoring the health and status of the nodes. 3. kubectl describe The kubectl describe command provides detailed information about a specific resource in the cluster. This command is useful for troubleshooting and understanding the configuration and status of resources. 4. kubectl delete The kubectl delete command is ...

DevOps Real-Time Tip "Confused between JDK and JRE? πŸ€”

If you're a DevOps engineer, this is VERY important!" "First, let’s understand JDK. JDK stands for Java Development Kit. It provides a complete environment πŸ‘‰ To write Java code πŸ‘‰ To compile Java code πŸ‘‰ To execute Java code So remember this: With JDK — You can WRITE code, You can COMPILE code, You can EXECUTE code." "Now what about JRE? JRE stands for Java Runtime Environment. It only provides an execution environment. That means — With JRE, You can ONLY run or execute Java applications. No writing. No compiling. Only running." πŸ”₯ DevOps Real-Time Tip (Very Important Part) "As a DevOps Engineer, this is what you must remember: πŸ‘‰ DEV Servers — Use JDK Because developers write, compile, and test code. πŸ‘‰ QA / STAGING / PROD Servers — Use JRE Because we only RUN the application." "Simple rule — Development means JDK. Production means JRE.

YAML script to create deployment

 apiVersion: apps/v1 kind: Deployment metadata:   name: kkdeployment spec:   replicas:3   selector:     matchLabels:       app: kkapp1   template:     metadata:       labels:         app: kkapp1     spec:       containers:         - name: kkcon1           image: location and name           ports:             - containerPort: 80

understand the sectors in disk_&_ differenece between MB & MiB,GB & GiB

 what is the purpose of fdisk -l please explain ? ================================= fdisk is a command or utility in Linux  which is used to display the total volumes in a server how to display the total volumes in your Linux server ====================================== by using fdisk -l we can display the total volumes in our Linux server can I attach volume to the server which is another availability zone ================================================ no , it is not possible why ? ---> because , as AWS Cloud guidelines           whenever we attach any volume to the any server          we must create server and volume in the same availability zone           otherwise it is not possible to attach volume to the server                    volume = hard disk                    ssd gp3   ...

What is VPC peering & How to setup VPC peering step by step : by kk

 vpc peering --------------- multiple vpc's  by default in aws multiple networks not allowed to talk each other  if  you want to establish a connection between multiple networks to talk each other  we can make this with the help vpc peering concept. is there any possibility to talk multiple networks each other ? no, by default it is not possible  we can make this possible with the help of vpc peering concept  vpc peering creation steps steps: -------------------------------------- 1.create two networks in different regions in same aws account  part -1 -------  step1: create network -1 or vpc -1 in region -1 ----->i.e. Mumbai  step2: create network -2 or vpc -2 in region -2 ----->i.e. Singapore part-2 (region-1 process- mumbai) ----------------------------------------- step1: go to Mumbai region step2: create network -1 or create vpc-1 network range = 172.50.1.0/16 step3: create internet gateway step4: attach this internet gateway t...

most useful Job searching websites in US

follow the below websites for your Job Search ? =========================== https://wellfound.com/ https://builtin.com/ https://www.dice.com/ https://www.lhh.com/en-us

understand JRE & JDK ,difference between openjdk-8-jdk-headless & openjdk-8-jdk

Question:-1 ----------- what is the difference between JDK & JRE =============================== JDK stands for java development kit it provides environment  to write java code to compile java code to execute java code JDK -YOU CAN WRITE CODE        YOU CAN COMPILE CODE      YOU CAN EXUECTE CODE JRE --- JRE stands for Java Run Environment  it provides execution environment for java application  JRE -YOU CAN ONLY EXECUTE CODE (TESTING)      or YOU CAN RUN JAVA CODE (TESTING)   QA/STAGING/PROD SERVERS:->We recommend JRE only                          because we run the code only   DEV SERVERS:------------>We recommend JDK only                          developer write code                          com...