Tech With Prerit
Tech With Prerit
  • Видео 16
  • Просмотров 127 468
Excellent Cloud-DevOps Fresher Interview with Hands-On | Episode 4
Welcome to the Fourth episode of our Mock Interview series!
If you're interested in participating, please fill out this form: forms.gle/AtVcHs8K4mydWd1k9
The Interview assessed the candidate based on the following criteria:
➊ Basic Cloud & DevOps concepts
➋ Kubernetes basics & advance
➌ Proficiency with DevOps tools like Docker
➍ Problem-solving skills
➎ System Design
▬▬▬▬▬▬ T I M E S T A M P S ⏰ ▬▬▬▬▬▬
0:00 - Intro
1:10 - Linux
03:00 - Scripting/Automation
10:30 - Kubernetes Case Study
15:00 - Troubleshooting
16:20 - Monitoring
16:55 - k8s
18:20 - Cloud System Design
23:30 - Job Specific
29:16 - Outro
► Maheboob's LinkedIn: www.linkedin.com/in/maheboob-patel/
► My LinkedIn: www.linkedin.com/in/prerit-munjal...
Просмотров: 8 256

Видео

Don't do these MISTAKES in your DevOps Interview | Episode 3
Просмотров 6 тыс.7 месяцев назад
Welcome to the Third episode of our Mock Interview series! If you're interested in participating, please fill out this form: forms.gle/AtVcHs8K4mydWd1k9 The Interview assessed the candidate based on the following criteria: ➊ Basic Cloud & DevOps concepts ➋ Kubernetes basics & advance ➌ Proficiency with DevOps tools like Docker ➍ Problem-solving skills ➎ System Design ▬▬▬▬▬▬ T I M E S T A M P S ...
The Best DevOps Interview Ever | Kubernetes, Docker, Cloud, Linux, System Design | Episode 2
Просмотров 10 тыс.8 месяцев назад
Welcome to the Second episode of our Mock Interview series! If you're interested in participating, please fill out this form: forms.gle/AtVcHs8K4mydWd1k9 The Interview assessed the candidate based on the following criteria: ➊ Basic Cloud & DevOps concepts ➋ Kubernetes basics & advance ➌ Proficiency with DevOps tools like Docker ➍ Problem-solving skills ➎ System Design ► Rishabh's LinkedIn: www....
Fresher DevOps Engineer Mock Interview | Linux, Azure, CI/CD, Docker, System Design | Episode 1
Просмотров 7 тыс.8 месяцев назад
Fresher DevOps Engineer Mock Interview | Linux, Azure, CI/CD, Docker, System Design | Episode 1

Комментарии

  • @DivyanshSharma-h7p
    @DivyanshSharma-h7p День назад

    is it for devops engineer?

  • @dhruvdesai170
    @dhruvdesai170 День назад

    Is the CKA certificate worth it? Looking for a new role as a DevOps Engineer or SRE. I have 1 year of experience in the AWS cloud. Thanks.

  • @rakeshkadam958
    @rakeshkadam958 3 дня назад

    Great Bootcamp. Appreciate the efforts that went in to delivery such great content.

  • @Akshattheyoutuber
    @Akshattheyoutuber 4 дня назад

    Amazing bro. No other one giving such great knowledge on youtube. We are using twistlock for scanning

  • @Ujjaval___
    @Ujjaval___ 11 дней назад

    Watching for the second time after learning basic objects in K8s, things are now easier to understand.

  • @Puneri_girl
    @Puneri_girl 14 дней назад

    I read your post on linkedin....what you would suggest if I want to enter in cloud in 2025

  • @anoopkathait-t8o
    @anoopkathait-t8o 20 дней назад

    Thanks for this video sir

  • @biznesmen8295
    @biznesmen8295 21 день назад

    Well in the age of LLM chatbots asking specific linux command or docker image syntax questions are I think too silly.

  • @yumna8205
    @yumna8205 29 дней назад

    Your videos are awesome bro ❤!! Please also create playlist on azure or gcp so we can start from zero, also teach us how to use documentation for each tool

  • @P-yb8wk
    @P-yb8wk Месяц назад

    bhai aapne vo cloud projects wali stream kyu delete kar di, i just learned cloud and got some confidence and was looking for that stream to revisit, please vo stream bohot helpful hai usko dubara upload karo

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

    Hi Prerit, Thanks for all your efforts. Also, can you please share code for the application

  • @Fahad-Oslo
    @Fahad-Oslo Месяц назад

    Brother you are amazing, best kubernetes bootcamp on youtube

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

    funfact:- if you are new in devOps , this lecture is not for you😂😂

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

    ❤❤❤ amazing and vvvv informative 👏 😊

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

    Please start terraform.series

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

    Thanks bro, nice one :)

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

    Prerit bhai hum kyverno ki policy apply kiye supse wo apply ho gai or wo policy sab pod par lagegi jo before policy apply karne ke phele pod bana hai uspar bhi lagegi ya policy apply karne ke baad jo pod banega sirf uspar apply hogi

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

    1:00:00

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

    1:19:19 🙂

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

    Question: How two Pods communicate with in the same namespace? 1. Pods in the same namespace can communicate with each other using DNS names or pod IPs, and you can use Kubernetes Services to simplify service discovery. Network policies can be used to restrict or control traffic if needed. Question: How two Pods communicate with in the different namespaces? 2. Pods on different nodes and namespaces communicate via Kubernetes networking. Each pod gets a unique IP address, and communication occurs through a cluster-wide network, using DNS names or services. Question: How two Pods communicate with in the different nodes? 3. Pods on different nodes communicate using Kubernetes' cluster-wide networking. Each pod has a unique IP address, and communication happens over the cluster network. Kubernetes handles routing between nodes, enabling seamless communication regardless of pod or node location. Question: How two Pods communicate with in the different clusters? 4. Pods in different clusters communicate via inter-cluster networking solutions or VPNs. Typically, this involves configuring a network bridge or service mesh that connects the clusters, allowing pods to address and route traffic between them across cluster boundaries. Question: How two containers communicate with each other in one pod? 5. Containers in the same pod communicate through the pod's shared network namespace. They use localhost and the container's specific ports to exchange data. This allows direct, low-latency communication as they share the same IP address and network interfaces.

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

    I have understood the Raft Consensus, but unable to understand its link with etcd. Anyone here can elaborate please?

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

    bhaiya aapke dockerhub ka jo image hai wo ErrImagePull de raha 😅

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

    Thanks for crystal clear explanation. Can you do in English also

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

    Finally found someone who can teach better than everyone. ❤

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

    Amazing Content bhaiya 😄

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

    Learn a lot ❤❤❤❤

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

    Kuch zyada hi advance topics hai but but many things pata chala. Thank you Bhaiya 😄

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

    keep it up sir its amazing

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

    hello prerit bhai , you said that you would share the source code for currency converter at end of series can you please share it ?

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

    Bhai code base chaiye

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

    Great content 🎉🎉

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

    Love your teaching skills ❤🎉🎉

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

    I can't believe like this much in K8S you such a genius everything explained in Deep thank you❤❤

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

    why can't we resize existing pv?

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

    If we can limit resources at pod level, why there is a need to do it at namespace

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

    Hi hi hi 👏👏👏

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

    How to join the live classes?

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

    monitoring ks cheez ki krta h ?? Pod ki node ki ya container ki ?? or init container data fetch krta h in our case ....to ye data application container tk jata kese h ?? hum koi link wagera dety h??

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

    Starting this amazing bootcamp!! Cheers to learning, and I hope I can complete it in a best possible way in context of learning!!

  • @RanjithaT-d3h
    @RanjithaT-d3h 3 месяца назад

    Will devOps/cloud will be replaced by AI? should we also learn AI/ML as part of devOps?

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

    prerit brother remaining sessions kb ayegi its been long rit

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

      Already there in the playlist section

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

      @@TechWithPrerit hn bhai maine series complete krli h n yes bht sare jagahon pr u didn't go in depth but yes it's true tmse behtar kubernetes series kisi ka b nhi h RUclips pr log yahan wahan bachon ko hawa mein tehla rhe h r time waste krrahe h gadhon ko khud b kuch nhi pta h r dusron ko b brbd krrhe h

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

    hey i have been following this series and intrested to build my career around k8s or cloud , i have some doubts can any anyone help ?

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

    Prerit can you please share these notes as well ?

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

    bhai prerit realtime devsecops series banao, n try to cover all the security tools

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

    System design plz

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

    Great one Bro…. Keep it up 👍

  • @anonymous8038-c4m
    @anonymous8038-c4m 3 месяца назад

    I love this Aloo dalo ..Sona niklega...I will always give the same answer to everywhere

  • @YogeshSharma-cs2pq
    @YogeshSharma-cs2pq 3 месяца назад

    hi Prerit, thanks for this amazing content bhai Maza aa gya pad Ke pura smjh aa gya crystal clear.

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

    Do interviewers allow to take references from the internet, like you?

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

      Depends on the interviewer, but most of them do allow…

  • @Rubina-z5b
    @Rubina-z5b 3 месяца назад

    Hi prerit im ur new subscriber....apka podcast dekhake mai apke channel pe ayi aap kyo new video upload nahi kar re

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

      Yes, not been active lately

    • @Rubina-z5b
      @Rubina-z5b 3 месяца назад

      @@TechWithPrerit so plz active raho na..