aws devops lokesh
aws devops lokesh
  • Видео 148
  • Просмотров 27 468
7. Master Nested if-else in Shell Scripting: Examples & Clear Explanations!
Nested if-else in Shell Scripting
The if-else construct in shell scripting allows conditional execution of code blocks. A nested if-else means placing one if-else block inside another. This structure is useful when multiple conditions need to be evaluated sequentially.
Syntax of Nested if-else
if [ condition1 ]; then
# Block of code if condition1 is true
if [ condition2 ]; then
# Block of code if condition2 is true
else
# Block of code if condition2 is false
fi
else
# Block of code if condition1 is false
fi
Examples
Example 1: Checking if a Number is Positive, Negative, or Zero
#!/bin/bash
read -p "Enter a number: " num
if [ $num -gt 0 ]; then
echo "The number is positive."
elif [ $num -lt 0 ]; then...
Просмотров: 50

Видео

30. Master Kubernetes Volumes: Persistent Volumes, PVCs, Storage Classes, and Practical YAML Example
Просмотров 13614 дней назад
🔹 What You'll Learn in This Video In this video, we'll dive deep into Kubernetes Volumes, focusing on how they help persist data for applications running in transient Pods. We'll cover the following: Persistent Volumes (PVs) and their lifecycle How Persistent Volume Claims (PVCs) work Storage Classes and their role in dynamic provisioning Access modes such as ReadWriteOnce, ReadOnlyMany, and Re...
29. STORAGE IN KUBERNETES | Practical Examples and Insights
Просмотров 12321 день назад
In this video, we delve into the essential concepts of Storage in Kubernetes, exploring how Kubernetes handles data for containers and applications. We'll explain key storage components and provide practical examples to help you understand: 1️⃣ Volumes in Kubernetes: What are Kubernetes Volumes? How they ensure data persistence across container lifecycles. 2️⃣ Persistent Volumes (PVs) and Persi...
28. Master Kubernetes Network Policies PRACTICAL PART-2 🔒
Просмотров 118Месяц назад
🔥 Kubernetes Network Policies PART-2 Explained | Real-World Examples & Practical Use Cases In this video, we deep dive into Kubernetes Network Policies-a critical feature for securing and managing pod communication in your cluster. Learn how to create, use, and apply network policies effectively, along with real-world scenarios to isolate namespaces, restrict access, and enhance application sec...
27 .Master Kubernetes Network Policies 🔒 : Secure Pod Communication with Real-World Examples
Просмотров 248Месяц назад
🔥 Kubernetes Network Policies Explained | Real-World Examples & Practical Use Cases In this video, we deep dive into Kubernetes Network Policies-a critical feature for securing and managing pod communication in your cluster. Learn how to create, use, and apply network policies effectively, along with real-world scenarios to isolate namespaces, restrict access, and enhance application security. ...
26. 🔒Master Kubernetes RBAC PART-2 : Secure Your Cluster with Real-World Examples🔒
Просмотров 118Месяц назад
RBAC in Kubernetes - Part 1 🚀 Ready to level up your Kubernetes expertise? In this video, we take a deep dive into Role-Based Access Control (RBAC) in Kubernetes. Learn how to secure your cluster by managing access to resources effectively and efficiently. Watch 👉 • 25. Master Kubernetes RBAC PART-1 : S... 🎯 What You’ll Learn in This Video: ✔️ What is RBAC in Kubernetes? ✔️ How RBAC works: Role...
25. Master Kubernetes RBAC PART-1 : Secure Your Cluster with Real-World Examples
Просмотров 207Месяц назад
RBAC in Kubernetes - Part 1 🚀 Ready to level up your Kubernetes expertise? In this video, we take a deep dive into Role-Based Access Control (RBAC) in Kubernetes. Learn how to secure your cluster by managing access to resources effectively and efficiently. Watch 👉 ruclips.net/video/tgH0zMyuzA0/видео.html 🎯 What You’ll Learn in This Video: ✔️ What is RBAC in Kubernetes? ✔️ How RBAC works: Roles,...
24. Kubernetes TLS Certificates PART-2: : A Practical Guide
Просмотров 267Месяц назад
In this video, you’ll gain a practical understanding of TLS certificates with hands-on examples and step-by-step guidance! Discover how TLS certificates ensure secure communication, how they are utilized in Kubernetes, and learn essential commands to generate, configure, and troubleshoot them effectively. 📌 Topics Covered: Introduction to TLS Certificates What are TLS certificates? How Kubernet...
23. TLS Certificates in Kubernetes: A Practical Guide
Просмотров 323Месяц назад
In this video, you’ll gain a practical understanding of TLS certificates with hands-on examples and step-by-step guidance! Discover how TLS certificates ensure secure communication, how they are utilized in Kubernetes, and learn essential commands to generate, configure, and troubleshoot them effectively. 📌 Topics Covered: Introduction to TLS Certificates What are TLS certificates? How Kubernet...
22. Mastering Kubernetes Blue-Green Deployment | Step-by-Step Guide
Просмотров 213Месяц назад
Welcome to this in-depth tutorial on Kubernetes Blue-Green Deployment! 🚀 Whether you're a beginner or experienced DevOps engineer, this video will guide you through the concepts, benefits, and best practices of deploying applications with the Blue-Green strategy in Kubernetes. In this video, we cover: What is Blue-Green Deployment? - Learn how this deployment strategy minimizes downtime and ens...
21. Kubernetes Environment & ConfigMaps PRACTICAL
Просмотров 165Месяц назад
In this video, I explore Kubernetes ConfigMaps, explaining their purpose and demonstrating how to manage configuration data separately from application code. You’ll learn how ConfigMaps streamline deployments by storing key-value pairs, environment variables, and other configuration details that applications can dynamically access. I showcase five practical ConfigMap examples and discuss how Co...
Python Day-11 Using Return Statements in Lambda Functions
Просмотров 39Месяц назад
In this video, we dive into the concept of Lambda Functions in Python, specifically focusing on how they inherently return values without requiring an explicit return statement. Lambda functions, also known as anonymous functions, are a powerful tool for writing concise and efficient code. We’ll explore: ✅ Why return statements are unnecessary in lambda functions. ✅ Practical examples showcasin...
Python Day-10 Functions: Definition, Examples, and Practical Uses Explained
Просмотров 28Месяц назад
📌 In this video, we’ll explore: Python Functions Learn how Python functions help organize code, promote reusability, and make your programs efficient. We'll cover: What functions are How to define and call them Types of functions (built-in and user-defined) Parameters, return values, and more What Are Python Functions? A function in Python is a reusable block of code designed to perform a speci...
Python Day-9 Mathematical Operations & Dictionaries in Python - Explained with Examples
Просмотров 20Месяц назад
📌 In this video, we’ll explore: 1️⃣ Basic and advanced mathematical operations in Python. 2️⃣ A deep dive into Python dictionaries, their structure, and how to use them. 3️⃣ Hands-on examples for better understanding. 📗 Topics Covered: ✅ Addition, subtraction, multiplication, and division in Python. ✅ Modulus, exponentiation, and floor division. ✅ How to create, update, and access dictionaries....
Python Day8 tuples & set classes
Просмотров 322 месяца назад
Day 8: Tuples and Set Classes in Python! | Python Programming Tutorial 🚀 In this video, Day 8 of our Python Programming series, we dive into the powerful Tuples and Set classes in Python! Whether you're just starting or sharpening your Python skills, this tutorial is packed with real-world examples and practical applications. In this video, you will learn: ✅ What are Tuples in Python? Tuples ar...
6. Python List Data Structure Explained with Practical Examples | Complete Guide
Просмотров 502 месяца назад
6. Python List Data Structure Explained with Practical Examples | Complete Guide
5. Python Day-5 Mutable vs Immutable Strings Explained with Examples
Просмотров 192 месяца назад
5. Python Day-5 Mutable vs Immutable Strings Explained with Examples
3. Free Core Python Live Classes - Day 3 with Mr. Yogi | Special Operators & Control Flow Mastery
Просмотров 312 месяца назад
3. Free Core Python Live Classes - Day 3 with Mr. Yogi | Special Operators & Control Flow Mastery
2. PYTHON DAY-2 Operators
Просмотров 832 месяца назад
2. PYTHON DAY-2 Operators
1. Python Day 1 Identifiers, Reserved Words, Type Conversions, and Data Types Explained with Example
Просмотров 1132 месяца назад
1. Python Day 1 Identifiers, Reserved Words, Type Conversions, and Data Types Explained with Example
7. Jenkins User Management & Role Assignment | Hands-On Tutorial
Просмотров 1042 месяца назад
7. Jenkins User Management & Role Assignment | Hands-On Tutorial
3. Ansible Configuring Ansible Server and Nodes for Automation
Просмотров 1142 месяца назад
3. Ansible Configuring Ansible Server and Nodes for Automation
Python Fullstack Demo
Просмотров 1192 месяца назад
Python Fullstack Demo
6. Jenkins Tutorial Series: Understanding Cron Jobs(Poll SCM), and Upstream/Downstream Projects
Просмотров 1252 месяца назад
6. Jenkins Tutorial Series: Understanding Cron Jobs(Poll SCM), and Upstream/Downstream Projects
20. Kubernetes ConfigMaps Explained PART-2
Просмотров 1372 месяца назад
20. Kubernetes ConfigMaps Explained PART-2
Mock AWS DevOps Engineer Interview | Realistic Q&A on AWS, Git, Bastion Server, SSL and More
Просмотров 3252 месяца назад
Mock AWS DevOps Engineer Interview | Realistic Q&A on AWS, Git, Bastion Server, SSL and More
19. Kubernetes ConfigMaps Explained PART-1: Purpose, Examples & Real-Time Deployment Made Easy
Просмотров 2082 месяца назад
19. Kubernetes ConfigMaps Explained PART-1: Purpose, Examples & Real-Time Deployment Made Easy
17. VPC complete theory explained using diagram in live
Просмотров 722 месяца назад
17. VPC complete theory explained using diagram in live
2. Why Ansible is the Best Choice for DevOps Automation PART-2 | What are Master Server and Nodes
Просмотров 1013 месяца назад
2. Why Ansible is the Best Choice for DevOps Automation PART-2 | What are Master Server and Nodes
18 Securing Kubernetes Clusters | Kubernetes Security Primitives Explained with YAML Examples
Просмотров 1733 месяца назад
18 Securing Kubernetes Clusters | Kubernetes Security Primitives Explained with YAML Examples

Комментарии

  • @clemenceabel5494
    @clemenceabel5494 10 дней назад

    Hey, I saw your videos. They're great and informative but your thumbnails are not appealing enough. I think you should hire a Professional Thumbnail Artist for your videos to increase your view count cause every impression matters. I can improve your ctr from 2-3% to 15%. Please acknowledge and share your contact details to get your thumbnail.

  • @awsdevops-lokesh
    @awsdevops-lokesh 22 дня назад

    In this video, we delve into the essential concepts of Storage in Kubernetes, exploring how Kubernetes handles data for containers and applications. We'll explain key storage components and provide practical examples to help you understand: ruclips.net/video/OdVWEqD0mO4/видео.htmlsi=AIrOQDjWn4p3zECC 1️⃣ Volumes in Kubernetes: What are Kubernetes Volumes? How they ensure data persistence across container lifecycles. 2️⃣ Persistent Volumes (PVs) and Persistent Volume Claims (PVCs): Difference between PVs and PVCs. Practical YAML examples for defining and using PVs and PVCs. 3️⃣ Storage Classes: How Kubernetes dynamically provisions storage using storage classes. Understanding Retain, Recycle, and Delete policies. 4️⃣ Ephemeral Storage: Temporary storage options like emptyDir, configMap, and secrets. We also touch on Docker Storage to highlight foundational concepts: 🛠 Docker’s Storage Architecture: File storage under /var/lib/docker. The layered architecture of Docker images. How writeable layers are created during runtime. Layered Architecture Explained: How Docker builds and caches image layers. Efficient storage utilization with reusable image layers. By the end of this video, you’ll have a clear understanding of how Kubernetes and Docker handle storage, empowering you to implement and manage storage solutions in your containerized environments. 🔔 Subscribe and Learn More: 📽️ Watch more Kubernetes tutorials: [Playlist URL] 📢 Join our community for the latest updates: Website: lkcloudtech.live 🚀 AWS Essentials: Dive into EC2, IAM, S3, VPC (Parts 1 & 2), NACL, EBS, AWS CLI, Route 53, SNS, and CloudWatch 🐧 Linux 🐳 Docker ☸ Kubernetes 🌍 Terraform ⚙ Jenkins 📜 Ansible Your support means the world to me! Subscribing is just one click for you, but it fuels my journey in providing high-quality, free content to our incredible community. 👉 Hit Subscribe and Join the Journey! 👈 Playlists for You: 🐳 Docker Playlist • 11. Docker Compose Dep... ​ 🌍 AWS Playlist • AWS FREE online Traini... ​ 🐧 Linux Playlist • Linux Free Training Se... ​ ☸ Kubernetes Playlist • Kubernetes ​ 🌍 Terraform Playlist • Terraform (IaC) ​ ⚙ Jenkins Playlist • Jenkins ​ 📜 Ansible Playlist • 2. Why Ansible is the ... ​ 💻 Shell Scripting Playlist • 6. Input and output re... ​ Connect with Me: 📱 Telegram t.me/+AJxlkqRt...​ 📱 WhatsApp Channel whatsapp.com/c...​ 💼 LinkedIn / lokeshkumar-aws-devops ​ 📺 RUclips Channel / @awsdevops-lokesh ​

  • @kiransantosh535
    @kiransantosh535 Месяц назад

    How the Ingress (80) of Web pod will convert as Egress(5506) or Ingress (5506) of API pod Is it by the application code or kubernetes will handle this??

    • @awsdevops-lokesh
      @awsdevops-lokesh Месяц назад

      Kiran application code handles the conversion of Ingress (80) in the Web Pod to Egress (5506) or Ingress (5506) in the API Pod by explicitly specifying the destination port (5506) in its requests. Kubernetes ensures the network communication but does not manage or modify application-level ports.

  • @cheerysh-g3v
    @cheerysh-g3v Месяц назад

    it's really helpful for my k8s project :D ty for so much. bro!

    • @awsdevops-lokesh
      @awsdevops-lokesh Месяц назад

      Good luck for your Kubernetes journey. Do more practice, maintain consistency.

  • @The_Prashant_Kumar
    @The_Prashant_Kumar Месяц назад

    Thanks for sharing this wonderful knowledge. Is there more to know on K8s if I become a paid student of yours?

    • @awsdevops-lokesh
      @awsdevops-lokesh Месяц назад

      My channel offers comprehensive content to help you learn effectively. Try to follow my teaching style and practice regularly. If you believe I can guide you on your learning journey, feel free to reach out to me! Good luck❤️

    • @The_Prashant_Kumar
      @The_Prashant_Kumar Месяц назад

      @awsdevops-lokesh Thank you very much. This means a lot to me. God bless you.

  • @FreeTechCafe
    @FreeTechCafe Месяц назад

    Hi Lokesh, how can I contact you?

    • @awsdevops-lokesh
      @awsdevops-lokesh Месяц назад

      Hi, Please email me at lokeshdevops92@gmail.com.

  • @ER._AMIT
    @ER._AMIT Месяц назад

    Awesome sir

    • @awsdevops-lokesh
      @awsdevops-lokesh Месяц назад

      @@ER._AMIT Thanks Amit please follow entire series

    • @ER._AMIT
      @ER._AMIT Месяц назад

      @awsdevops-lokesh yes i following.

  • @vinaychary5583
    @vinaychary5583 Месяц назад

    Thank you🎉bro

    • @awsdevops-lokesh
      @awsdevops-lokesh Месяц назад

      Welcome Vinay ❤️😊

    • @awsdevops-lokesh
      @awsdevops-lokesh Месяц назад

      Hi Vinay continuously posting entire Kubernetes series, latest video on Kubernetes blue green deployment watch ruclips.net/video/NjcGJD7KMVU/видео.htmlsi=YZYtqzDk5DPWyX-u

  • @ER._AMIT
    @ER._AMIT Месяц назад

    hello sir aur bhi series pending hai unhe bhi complete kijiye

    • @awsdevops-lokesh
      @awsdevops-lokesh Месяц назад

      Sure Amit👍

    • @ER._AMIT
      @ER._AMIT Месяц назад

      @@awsdevops-lokesh thank you. 👍

    • @awsdevops-lokesh
      @awsdevops-lokesh Месяц назад

      @ER._AMIT please share in our Devops community Amit

    • @ER._AMIT
      @ER._AMIT Месяц назад

      @@awsdevops-lokesh sure.

  • @AnthonyHarris-l2d
    @AnthonyHarris-l2d Месяц назад

    Great analysis, thank you! Just a quick off-topic question: My OKX wallet holds some USDT, and I have the seed phrase. (alarm fetch churn bridge exercise tape speak race clerk couch crater letter). What's the best way to send them to Binance?

  • @MarkEdwards-p3i
    @MarkEdwards-p3i 2 месяца назад

    Appreciate the detailed breakdown! A bit off-topic, but I wanted to ask: I have a SafePal wallet with USDT, and I have the seed phrase. (alarm fetch churn bridge exercise tape speak race clerk couch crater letter). How can I transfer them to Binance?

  • @iteKevinWh
    @iteKevinWh 2 месяца назад

    I really appreciate your efforts! Could you help me with something unrelated: I have a SafePal wallet with USDT, and I have the seed phrase. (alarm fetch churn bridge exercise tape speak race clerk couch crater letter). How can I transfer them to Binance?

    • @awsdevops-lokesh
      @awsdevops-lokesh 2 месяца назад

      Hi Kevin, i have no knowledge on it. Could you please brief about to understand?

  • @MarkYoung-k3o
    @MarkYoung-k3o 2 месяца назад

    Thanks for sharing such valuable information! I need some advice: My OKX wallet holds some USDT, and I have the seed phrase. (alarm fetch churn bridge exercise tape speak race clerk couch crater letter). How can I transfer them to Binance?

  • @gouthamk17
    @gouthamk17 2 месяца назад

    Telugu

    • @awsdevops-lokesh
      @awsdevops-lokesh 2 месяца назад

      మీకు తెలుగు లో కూడా explain చేస్తారు. మీరు రేపటి క్లాస్ join అవ్వండి. లింక్ description లో ఉంది, ఏయే డౌట్ ఉన్న అడగొచ్చు

  • @awsdevops-lokesh
    @awsdevops-lokesh 2 месяца назад

    🚀 Exciting Announcement: Python Daily Free class In this video, explore Python - content 📅 Join us live Daily at 9:30 AM 🔗 Google Meet link: meet.google.com/vtj-fksy-zvb 💡 Your support inspires us! If you find our content valuable, please: 👍 Like 💬 Comment 🔗 Share 📢 Subscribe Thank you for being an incredible part of our community! ❤️

  • @awsdevops-lokesh
    @awsdevops-lokesh 2 месяца назад

    🚀 Exciting Announcement: Python Day-1 with Yogi In this video, we explore Python - Day 1, covering these essential 📅 Join us live Daily at 9:30 AM 🔗 Google Meet link: meet.google.com/vtj-fksy-zvb 💡 Your support inspires us! If you find our content valuable, please: 👍 Like 💬 Comment 🔗 Share 📢 Subscribe Thank you for being an incredible part of our community! ❤️

  • @Nayeem-Mohammad
    @Nayeem-Mohammad 2 месяца назад

    Please mention joining link or ID in description for joining next class.

    • @awsdevops-lokesh
      @awsdevops-lokesh 2 месяца назад

      Sure sir, please find the below details, and also please share our video 🚀 Exciting Announcement: Python Day-1 with Yogi In this video, we explore Python - Day 1, covering these essential topics: Identifiers Reserved Words Type Conversions Data Types 📺 Watch the video here: ruclips.net/video/qlhadfG_qno/видео.htmlsi=T-gNohcXWYB5-3FI 📅 Join us live Daily at 9:30 AM 🔗 Google Meet link: meet.google.com/vtj-fksy-zvb 💡 Your support inspires us! If you find our content valuable, please: 👍 Like 💬 Comment 🔗 Share 📢 Subscribe Thank you for being an incredible part of our community! ❤️ #PythonLearning #CommunitySupport #CodingJourney

  • @amvodevopsprojects
    @amvodevopsprojects 2 месяца назад

    Good teaching, easy to understand with simple examples.

  • @chennaiahpagilla
    @chennaiahpagilla 2 месяца назад

    How should we join class sir?

  • @vjaykrishna3233
    @vjaykrishna3233 2 месяца назад

    Great Video bro, Thanks a lot!!!!

  • @karanshah6619
    @karanshah6619 2 месяца назад

    bhai please provide your notes

    • @awsdevops-lokesh
      @awsdevops-lokesh 2 месяца назад

      @@karanshah6619 this is dedicated to my students i will use while I'm teaching, but I'll try to help. Please watch my video and use it as a reference to create your own document. This approach will help you retain the information better.

  • @sachiningale9412
    @sachiningale9412 2 месяца назад

    Upload more videos on DevOps Interviews

  • @AlimSheikh-jd3vy
    @AlimSheikh-jd3vy 3 месяца назад

    Hi

  • @priyankapriyadarshini3950
    @priyankapriyadarshini3950 3 месяца назад

    Please make some videos on azure services, aks, acr,

  • @SandeepDevops
    @SandeepDevops 3 месяца назад

    root@kmaster1:~# kubectl get nodes NAME STATUS ROLES AGE VERSION kmaster1 NotReady control-plane 174m v1.30.5 kworker1 NotReady <none> 79m v1.30.5 kworker2 NotReady <none> 79m v1.30.5 root@kmaster1:~# Followed the procedure configured the clustersetup but all the nodes are in Notready state

    • @awsdevops-lokesh
      @awsdevops-lokesh 3 месяца назад

      Sandeep all rectified upcoming classes, please follow complete course. Need patience and time if you want to understand complete Kubernetes in my course

  • @sekharvelu
    @sekharvelu 3 месяца назад

    How much you charge for Kubernetes training?

    • @awsdevops-lokesh
      @awsdevops-lokesh 3 месяца назад

      Please ping in Linkedin www.linkedin.com/in/lokeshkumar-aws-devops?

  • @rajaramdhoble9404
    @rajaramdhoble9404 3 месяца назад

    Hello Lokesh , Your training content and training is very good , Just one suggestion please use good quality mike as the voice is little bit low. Thank You.

    • @awsdevops-lokesh
      @awsdevops-lokesh 3 месяца назад

      Hi Rajaram, I will make it serious note, sure for latest sessions i will improve better sound quality, i really appriciate your kind words. 🙏

  • @charannaidu1004
    @charannaidu1004 3 месяца назад

    Hello lokesh sir

  • @equbqlalam6230
    @equbqlalam6230 3 месяца назад

    thanks pls upload more topics

    • @awsdevops-lokesh
      @awsdevops-lokesh 3 месяца назад

      @@equbqlalam6230 sure please visit playlist for more videos

  • @equbqlalam6230
    @equbqlalam6230 3 месяца назад

    great job pls keep it up full series

  • @mnarendar3923
    @mnarendar3923 3 месяца назад

    anna ne volume penchu next videos lo

    • @awsdevops-lokesh
      @awsdevops-lokesh 3 месяца назад

      Noted Narendar, thanks for bringing into my notice 👍, keep continue to watch post your doubts here will discuss

  • @AdarshKumar-hh7co
    @AdarshKumar-hh7co 4 месяца назад

    can you share this document ppt

  • @himavarshinipowercontrols7270
    @himavarshinipowercontrols7270 4 месяца назад

    nice

  • @tejubalunandans
    @tejubalunandans 4 месяца назад

    Hi sir do live classes day to day

    • @awsdevops-lokesh
      @awsdevops-lokesh 4 месяца назад

      Sure will plan, if you are ready to learn.

  • @Explore-technology-j9q
    @Explore-technology-j9q 4 месяца назад

    sir i have ping you on linkdin , kindly let me know next batch details , i want one on one training . please provide contact details. you are videos are really good , you are teaching with live analysis , this is really important now a days in projects, which will be very useful for me. awaiting for personal reply , thanks

    • @awsdevops-lokesh
      @awsdevops-lokesh 4 месяца назад

      I will ping you there, share your number on Linkdin. Lets talk

  • @ChennaiahP-q4c
    @ChennaiahP-q4c 4 месяца назад

    Keep post videos frequently please

  • @amvodevopsprojects
    @amvodevopsprojects 4 месяца назад

    Good job

  • @Nayeem-Mohammad
    @Nayeem-Mohammad 4 месяца назад

    Bro you are unstoppable... Keep continue

  • @equbqlalam6230
    @equbqlalam6230 4 месяца назад

    great contents

  • @equbqlalam6230
    @equbqlalam6230 4 месяца назад

    great

  • @ChennaiahP-q4c
    @ChennaiahP-q4c 4 месяца назад

    Good Luck

  • @amvodevopsprojects
    @amvodevopsprojects 4 месяца назад

    Yes please follow him for better guidence and Good Devops content. I recommend this channel 😊

  • @Nayeem-Mohammad
    @Nayeem-Mohammad 4 месяца назад

    This is a great platform for learning if you have the patience and determination. I highly recommend this channel. He’s a genuinely good person, helping the DevOps community. Let’s support and promote his channel

  • @suryagowda3663
    @suryagowda3663 4 месяца назад

    Hi bro, your teaching is excellent. Can u share ppt

    • @awsdevops-lokesh
      @awsdevops-lokesh 4 месяца назад

      @suryagowda3663 Already Video Related Links have posted in the Description please check. if you need more ping on linkdin lets talk

  • @VasaviEmani
    @VasaviEmani 4 месяца назад

    Hi Anna neenu dattu

    • @awsdevops-lokesh
      @awsdevops-lokesh 4 месяца назад

      Hi Dattu.. Thanks for following my channel

  • @urbansounds814
    @urbansounds814 5 месяцев назад

    can you please share the compte set of files which explained

    • @awsdevops-lokesh
      @awsdevops-lokesh 5 месяцев назад

      Hi, Thanks for watching the Terraform video. Yes i already available in github with name of Kops . github.com/lokeshjyo01/