ไม่สามารถเล่นวิดีโอนี้
ขออภัยในความไม่สะดวก

Kubernetes Jobs,init container and pod lifecycle-Hindi/Urdu | Lec-56 | Complete Kubernetes series

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ธ.ค. 2021
  • LEC 56 NOTES TECHNICAL GUFTGU
    ====================
    Install Docker
    $ sudo apt update && apt -y install docker.io
    Install kubectl
    $ curl -LO storage.google... -s storage.google... && chmod +x ./kubectl && sudo mv ./kubectl /usr/local/bin/kubectl
    Install Minikube
    $ curl -Lo minikube storage.google... && chmod +x minikube && sudo mv minikube /usr/local/bin/
    Start Minikube
    $ apt install conntrack
    $ minikube start --vm-driver=none
    $ minikube status
    ===========Job=====================================
    apiVersion: batch/v1
    kind: Job
    metadata:
    name: testjob
    spec:
    template:
    metadata:
    name: testjob
    spec:
    containers:
    - name: counter
    image: centos:7
    command: ["bin/bash", "-c", "echo Technical-Guftgu; sleep 5"]
    restartPolicy: Never
    --------------
    apiVersion: batch/v1
    kind: Job
    metadata:
    name: testjob
    spec:
    parallelism: 5 # Runs for pods in parallel
    activeDeadlineSeconds: 10 # Timesout after 30 sec
    template:
    metadata:
    name: testjob
    spec:
    containers:
    - name: counter
    image: centos:7
    command: ["bin/bash", "-c", "echo Technical-Guftgu; sleep 20"]
    restartPolicy: Never
    -------------
    apiVersion: batch/v1beta1
    kind: CronJob
    metadata:
    name: bhupi
    spec:
    schedule: "* * * * *"
    jobTemplate:
    spec:
    template:
    spec:
    containers:
    - image: ubuntu
    name: bhupi
    command: ["/bin/bash", "-c", "echo Technical-Guftgu; sleep 5"]
    restartPolicy: Never
    =================
    Now you can Donate us via Paypal or Google Pay
    Paypal link : www.paypal.me/...
    GooglePay/PhonePe/BHIM App UPI ID : bhupinderccs@okaxis
    Visit Our Website for all the Courses- www.technicalguftgu.in
    Do subscribe to TECHNICAL GUFTGU channel and Press Bell icon & get regular updates on videos, DIRECT LINK TO CHANNEL : / technicalguftgu
    Here are direct links of My All the Playlist: MUST CHECK
    IPv6 Complete Tutorial for beginners Link : • IP Version 6 Tutorials...
    Microsoft Azure Tutorial for beginners in Hindi/Urdu AZ-103 and AZ-900 LINK : • Microsoft Azure Tutori...
    Cloud computing tutorials For beginners Link : • Cloud Computing Tutori...
    AWS Solution Architect-Associate complete Tutorials Link : • AWS Solution Architect...
    Devops tutorials in Hindi:-
    • What are the Pre-requi...
    CCNA Complete Tutorials /Computer Networking Link : • CCNA Full course in Hi...
    Thanks For giving Your Valuable time.
    Regards,
    Technical Guftgu Team

ความคิดเห็น • 204

  • @ganeshvempati27
    @ganeshvempati27 ปีที่แล้ว +8

    Thank you Sir for your selfless contribution to the society.

  • @muhammadusman6713
    @muhammadusman6713 2 ปีที่แล้ว +6

    Bhupinder sir I'm from Pakistan and i got job in DevOps because of your DevOps Series. and i'm waiting to finish kubernetes series so i can prepare and can crack the CKA exam.

  • @Stoic_Mindset_4u
    @Stoic_Mindset_4u 2 ปีที่แล้ว +8

    One of the best trainer, Thank you Bhaio. I'm from Bangladesh.

  • @user-ob9zk6vc9u
    @user-ob9zk6vc9u 2 ปีที่แล้ว +40

    _you such a legendary teacher... i don't understand why you're so underrated on TH-cam..._
    _i wish Universe blesses you with even more knowledge and wealth and you keep sharing with us..._

    • @parvezshaikhul
      @parvezshaikhul ปีที่แล้ว +2

      People have lost the sense of what is Good and what is Bad in this age.

  • @jahangirkhan82
    @jahangirkhan82 2 ปีที่แล้ว +18

    I am devops engineer in a company now just bcoz of you. Thanks bhai.

    • @izharsyed4869
      @izharsyed4869 2 ปีที่แล้ว +1

      please share details sir .. i need your guaidance

    • @TechnicalGuftgu
      @TechnicalGuftgu  2 ปีที่แล้ว +9

      Great.Hame Linkedin par tag kare aur channel ke baare me sabhi ko Batayein.

    • @jahangirkhan82
      @jahangirkhan82 2 ปีที่แล้ว +1

      Dear izhar syed guidance is this channel and sir phupindar. and from my side work hard you will succeed

    • @qaziaman2320
      @qaziaman2320 ปีที่แล้ว

      Kon si city m aap job kr rhe ho sir

    • @ShubhamPatel-bw2kb
      @ShubhamPatel-bw2kb ปีที่แล้ว

      Can you please help me with resume format I have completed all videos

  • @swativerma9494
    @swativerma9494 27 วันที่ผ่านมา

    Happy Guru Purnima sir..aapnai bht kuch sikhaya hai..thank you for everything.. bhagwaan ji aapko kush rakhaiii❤❤

  • @RafiqKhan-rd8bz
    @RafiqKhan-rd8bz 2 ปีที่แล้ว +4

    Thank you Bhupendra sir, I also got new job with Docker and kubernetes.
    Love your teaching way.

  • @ISHANICUTIEPIE
    @ISHANICUTIEPIE 2 ปีที่แล้ว +6

    awesome lecture.. and Inti container YML
    apiVersion: v1
    kind: Pod
    metadata:
    name: initcontainer
    spec:
    initContainers:
    - name: c1
    image: centos
    command: ["/bin/bash", "-c", "echo Technical-Guftgu > /tmp/xchange/testfile; sleep 30"]
    volumeMounts:
    - name: xchange
    mountPath: "/tmp/xchange"
    containers:
    - name: c2
    image: centos
    command: ["/bin/bash", "-c", "while true;do echo 'cat /tmp/data/testfile'; sleep 5; done"]
    volumeMounts:
    - name: xchange
    mountPath: "/tmp/xchange"
    volumes:
    - name: xchange
    emptyDir: {}

    • @rahulchowdhury279
      @rahulchowdhury279 ปีที่แล้ว

      Thanks a lot Bro

    • @rahulchowdhury279
      @rahulchowdhury279 ปีที่แล้ว

      Small correction: volumeMounts: name: data (not xchange in the 2nd case)

  • @allwayspositive8359
    @allwayspositive8359 ปีที่แล้ว +1

    "chaliye acchi baat hai and chalo buniyadi topic par aate hai"
    this is your takiya kalaam sir You are great job sir

  • @nirajjaiswal6468
    @nirajjaiswal6468 7 หลายเดือนก่อน +1

    I'm Greatfull To Youuuu Sir

  • @vashisththakar2695
    @vashisththakar2695 3 หลายเดือนก่อน

    you are simply awesome sir, maza aa gaya . understood the job and cronjob concept clearly😍😍

  • @sagarparab1837
    @sagarparab1837 2 ปีที่แล้ว +3

    Please continue like this, we need mentor like you 🔥🔥🔥
    Thankyou

  • @bhuvneshsharma7142
    @bhuvneshsharma7142 2 ปีที่แล้ว +1

    Really Sir, you are god of teaching, no any institute provide such deep and brief knowledge on DevOps which you provide us. Hats off your dedication toward our side and teach us this new technology which is high in demand at present

  • @zafar103
    @zafar103 2 ปีที่แล้ว +7

    Excellent videos for a non technical person as well, Just a small suggestion. If possible can you please make a video on scenarios we might encounter during our day to day work on Kubernetes. This will be really helpful to crack the interviews as most of the interviewers ask scenario based questions. Thanks a lot.

  • @shahsalahuddinmca1
    @shahsalahuddinmca1 2 ปีที่แล้ว

    Aapko Dil se Salaam hai bhai, jis tarha se aap devops k Saat Saat Insaniyat k Baat karte hai, aur acha massage dete hai, Love you sir ji 😍 ♥️👏👏👏

  • @avaisqurni5971
    @avaisqurni5971 2 ปีที่แล้ว +1

    lectures to aap kai achaiy hain. lakin yai jo shaairy ka turka lagta hai is ki to baat kuch aur hai. Feel fresh after a intense lession. Thanking you g

  • @jaideeptonk1854
    @jaideeptonk1854 2 ปีที่แล้ว +4

    Night shift aur Bhupi sir ki Kubernetes ki notification aana.. Still a better love story than Twilight 😁🙃🙃🙃
    Thnks for uploading the new content sir ji 🤗

  • @sandeshsuryawanshi1599
    @sandeshsuryawanshi1599 2 ปีที่แล้ว +2

    helllo sir maine apke devops , aws ke playlist dekh ke devops ke liye interview diya & im selected in company as devops intern thank you sir you doing good work .. god bless you sir ..

  • @mdjawed1063
    @mdjawed1063 2 ปีที่แล้ว +2

    Non stop ....Bhupi Sir.. Thank you 😊

  • @talhasaeed3053
    @talhasaeed3053 2 ปีที่แล้ว +5

    sir i am currently watching your networking lectures and i am amazed
    love from pakistan
    can you plz make a small lec on ports in networking
    thank you sir and stay blessed

  • @deepakgupta4479
    @deepakgupta4479 2 ปีที่แล้ว

    Hamesha ki tarah...
    Video ka last part pehle suna..
    Waah bhai waahhh..... 👍👍

  • @farji-ud5uu
    @farji-ud5uu 2 ปีที่แล้ว +1

    Very Well Bhupi Sir. A BIG HEART and LOVE. god bless you!!!!!!!!!!!!!!!!1

  • @mymanageaccount9434
    @mymanageaccount9434 2 ปีที่แล้ว +3

    Sir bhupinder. I think Pakistan me jtne be DevOps engineer new arhy ha. Sab apky lectures sy arhy ha. Love from Lahore

  • @debrajpradhan5500
    @debrajpradhan5500 2 ปีที่แล้ว +2

    Thank you for uploading this valuable video.

  • @ishanyadav8209
    @ishanyadav8209 2 ปีที่แล้ว +2

    Legendary teacher in the universe :)

  • @prateekjaiswal9245
    @prateekjaiswal9245 2 ปีที่แล้ว +3

    Awesome tutorial as always. Thanks for your efforts.

  • @ashutoshkumar-wh3tp
    @ashutoshkumar-wh3tp 2 ปีที่แล้ว +2

    Awesome content as always thank you and love you sir

  • @tech_channel110
    @tech_channel110 ปีที่แล้ว +1

    great teacher
    well explanied series keep going or doing sir
    love from Pakistan karachi

  • @numair3
    @numair3 2 ปีที่แล้ว +3

    I appreciate your efforts

  • @kazishafin1
    @kazishafin1 2 ปีที่แล้ว

    Best K8s playlist on TH-cam. Thank you sir

  • @abhishekkumarsrivastava1489
    @abhishekkumarsrivastava1489 2 ปีที่แล้ว

    Sir aaj bahut ache lag rahe the bilkul apne teaching ki tarah.
    Thank you Sir

  • @abdulmulla5391
    @abdulmulla5391 2 ปีที่แล้ว +2

    Sir you are a awesome teacher!!!

  • @devprasad356
    @devprasad356 2 ปีที่แล้ว

    Unbelievable.. I searched through most of the tutorials and ended on this. Incredible. Too good. Thankyou for your efforts.
    I was looking for Istio service mesh, reddis, rabbitmq, openshift tutorials. It will be great if you can teach that end to end. Additionally some mini project will help.
    I am sure your work and efforts will pay back with this kind of teaching.

  • @pratyushpahari2606
    @pratyushpahari2606 2 ปีที่แล้ว +2

    Sir, I didn't seen such amazing and down to earth Teacher like you on whole youtube. I'm now in 1st year of my Engineering College. Can you please tell me how can I use your channel for my learning ?? Right now I just started learning C language from youtube. It will be really very helpful if you guide me. And also thank you for accepting my connection request over linkedin.

  • @kunalpatil6057
    @kunalpatil6057 2 ปีที่แล้ว

    you are best trainer ever

  • @ambikaprasad9464
    @ambikaprasad9464 2 ปีที่แล้ว

    Excellent series of Kubernetes both for technical and non-technical

  • @mohammedsamee7746
    @mohammedsamee7746 2 ปีที่แล้ว +2

    I appreciate you lot because of your teaching as well as the way you motivate the non-technical candidates "Awesome lecture sir"...what about terraform when this series will come sir

  • @The-SmilinG-kukO
    @The-SmilinG-kukO 2 ปีที่แล้ว

    Today's morning starts with this video ...ooo my goodness , thank you so much Bhupi sir ❤️

  • @khushalchugh
    @khushalchugh ปีที่แล้ว

    Respect for your hardwork!

  • @bittusahu4520
    @bittusahu4520 2 ปีที่แล้ว +2

    Thanks!

  • @ZeeMan2.0
    @ZeeMan2.0 2 ปีที่แล้ว

    Thanks awesome bhuppi sir Mind-blowing

  • @bhavikk1144
    @bhavikk1144 2 ปีที่แล้ว +15

    When can we expect Terraform training series? I like your DevOps tutorials. Very Detailed and Informative.

    • @mohdshaheryar2871
      @mohdshaheryar2871 2 ปีที่แล้ว +1

      Yes please, drop lecture on Terraform

    • @ankitasingh8737
      @ankitasingh8737 2 ปีที่แล้ว +1

      U can watch Gaurav sharma tutorial

    • @jaideepkumar3778
      @jaideepkumar3778 2 ปีที่แล้ว

      @@ankitasingh8737 The Cloud World tutorials is also good. Go all 9 lectures of this guys.

    • @ashutoshpandey6110
      @ashutoshpandey6110 ปีที่แล้ว

      Started terraform training

    • @1improvement28
      @1improvement28 ปีที่แล้ว

      @@ashutoshpandey6110 Will resume after GCP 😁

  • @ambikaprasad9464
    @ambikaprasad9464 2 ปีที่แล้ว

    Thanks for all effort and contribution

  • @shikhakashyap4611
    @shikhakashyap4611 2 ปีที่แล้ว

    Thanks for all your efforts sir... This series is really very helpful

  • @MANPREETKAUR-ee4wx
    @MANPREETKAUR-ee4wx 2 ปีที่แล้ว +1

    Thank you Sir

  • @ombirdagar-qj1li
    @ombirdagar-qj1li ปีที่แล้ว

    again thanks for this series salute sir ji

  • @viveksingh-xl2ut
    @viveksingh-xl2ut 11 หลายเดือนก่อน

    Thanks Sir :) you are a real comrade.

  • @neerajrawal81
    @neerajrawal81 2 ปีที่แล้ว

    Happy new year to all and special thanks to to sir for make this training videos.
    I Hope support to sir to encourage for this great job.

  • @AbhaySingh-de1uq
    @AbhaySingh-de1uq 2 ปีที่แล้ว

    Bhupinder, bahut badhiya.

  • @khushalsapariya9304
    @khushalsapariya9304 2 ปีที่แล้ว

    wow ! aaj kya lag rahe ho ❤ Ekdum Jhakkass bhidu 👌

  • @amolbhalerao4049
    @amolbhalerao4049 2 ปีที่แล้ว +1

    Thank you sir for this amazing series. I got offer in devops because of you.

    • @MohdDanish-kv9sw
      @MohdDanish-kv9sw 2 ปีที่แล้ว +1

      can u guide me bro , what to do after watching this series is there anything else i need to learn ??

    • @amolbhalerao4049
      @amolbhalerao4049 2 ปีที่แล้ว +1

      @@MohdDanish-kv9sw no bro .it's time to go for interviews .give your best bro.🤞👍

    • @MohdDanish-kv9sw
      @MohdDanish-kv9sw 2 ปีที่แล้ว

      @@amolbhalerao4049 thanks bro

    • @MohdDanish-kv9sw
      @MohdDanish-kv9sw 2 ปีที่แล้ว

      can u tell me about the interview questions they asked

    • @himanshuamin9835
      @himanshuamin9835 ปีที่แล้ว

      @@amolbhalerao4049 did they ask for any certificate..?

  • @deepakv30
    @deepakv30 ปีที่แล้ว

    Best content on K8s

  • @anamchaudhari749
    @anamchaudhari749 6 หลายเดือนก่อน

    for cron job i was getting wrror in yml file so if someone is getting error can do this
    apiversion: batch/v1 should work rest of the yml is correct The error was because the new version of K8s doesnt supports v1beta1 so if you replace it will work
    thanks sir for your efforts !!

  • @sharukh-e4x
    @sharukh-e4x 27 วันที่ผ่านมา

    The cron expression * * * * * consists of five fields:
    Minute: * - Every minute, if we want for everymin (*****)
    Hour: * - Every hour (0****)
    Day of the Month: * - Every day of the month (ex: 15th day of month > 0 0 15 * *)
    Month: * - Every month (001**)
    Day of the Week: * - Every day of the week (0 0 * * *)

  • @aanchaldogra
    @aanchaldogra 2 ปีที่แล้ว

    liked before watching,, thanks a ton

  • @prithvivishwanath
    @prithvivishwanath 2 ปีที่แล้ว +2

    Hello sir … I am studying devops only from ur channel … but I attended one interview and answered everything they asked … only by seeing ur videos I was able to answer …
    But regarding AWS terraform when they asked I was unable to answer anything please cover AWS terraform also sir

  • @barjenderpaul6241
    @barjenderpaul6241 2 ปีที่แล้ว +1

    This is very informative series. Appreciate your efforts. When are you planning to cover pod identify??

  • @deep80105
    @deep80105 ปีที่แล้ว

    bahut badhia padhate hain sir aap

  • @SukhjinderSingh-kp8xr
    @SukhjinderSingh-kp8xr 2 ปีที่แล้ว

    such a great teacher 👍

  • @rajendraghimire2008
    @rajendraghimire2008 ปีที่แล้ว

    Even though some commands are depricated on Kubernetes, I find this video very useful and inspiring. the text file or the YAML file details were not found. if those could be made available again lots of ppl would get helped.

  • @nikhilwagle8466
    @nikhilwagle8466 2 ปีที่แล้ว +1

    Sir mern web app ko dockerize and pipeline complete project pe video banaeye. Thank you so much for your videos!!

  • @nadianizam6101
    @nadianizam6101 ปีที่แล้ว

    Super mentor Please also make videos on end to end projects

  • @parikshitkudalkar2854
    @parikshitkudalkar2854 2 ปีที่แล้ว

    Feeling Awsome...

  • @aartigandhi1334
    @aartigandhi1334 2 ปีที่แล้ว

    Thank you so much Bhupinder sir :)

  • @debrajpradhan5500
    @debrajpradhan5500 2 ปีที่แล้ว +2

    Padhne wale se jyda padhane wala Jyada mehnat kar rhe hain

  • @bhushankumawat7713
    @bhushankumawat7713 2 ปีที่แล้ว

    M glad to learn deeply from your Videos... Awesome lectures... Will you please create some videos for SAP n ABAP...

  • @hassanaslam1536
    @hassanaslam1536 2 ปีที่แล้ว +2

    activedeadlineseconds means to terminate the container after specific time but you said that it will wait for 10secs after the container finished its job which is wrong, it will just kill the pod after 10 secs whether the container/sleep is configured for 60 secs or what

  • @ankitshukla8075
    @ankitshukla8075 2 ปีที่แล้ว

    Great job sir.

  • @ZeeMan2.0
    @ZeeMan2.0 2 ปีที่แล้ว

    Pashmeena shawal pe sher yaad aaya ' ragbat ki pashmeena odhkar ham malang hai aapke agosh me janab"

  • @universe4d2002
    @universe4d2002 ปีที่แล้ว

    you such a great...........

  • @Mayankkumar-gk2fg
    @Mayankkumar-gk2fg 2 ปีที่แล้ว

    thankuuu sir ...

  • @vikaschauhan471
    @vikaschauhan471 2 ปีที่แล้ว

    Great learning

  • @afzalsami4215
    @afzalsami4215 ปีที่แล้ว

    Thanks for sharing

  • @vishalkalra5607
    @vishalkalra5607 10 หลายเดือนก่อน +1

    Updated yml for cronjob
    apiVersion: batch/v1
    kind: CronJob
    metadata:
    name: bhupi
    spec:
    schedule: "* * * * *"
    jobTemplate:
    spec:
    template:
    spec:
    containers:
    - image: ubuntu
    name: bhupi
    command: ["/bin/bash", "-c", "echo Technical-Guftgu; sleep 5"]
    restartPolicy: Never

  • @Decipline_Life1
    @Decipline_Life1 9 หลายเดือนก่อน

    Guruji namo nama🙏🙏🙏🙏🙏🙏

  • @shamstabrez2986
    @shamstabrez2986 2 ปีที่แล้ว

    Jaise notification aya phle like kiya sir aye r like na ho aisa nhi hoskta

  • @AjeetKumar-zf2bp
    @AjeetKumar-zf2bp 2 ปีที่แล้ว

    New video uploaded chaliye aachi baat hai 😀👍

  • @ashujoshi8848
    @ashujoshi8848 2 ปีที่แล้ว

    always greate

  • @shamstabrez2986
    @shamstabrez2986 2 ปีที่แล้ว

    aiye sbse phle shyri sunte h lecture sunne se phle

  • @sherazhussainmughal2784
    @sherazhussainmughal2784 ปีที่แล้ว

    Very Good, Thx

  • @rahulbansal5757
    @rahulbansal5757 2 ปีที่แล้ว

    Hello sir great job

  • @amanullahghouri1149
    @amanullahghouri1149 2 ปีที่แล้ว

    lots of love sir

  • @niharikadixit5723
    @niharikadixit5723 ปีที่แล้ว

    Thank you so much sir ji

  • @umairkhalid2691
    @umairkhalid2691 2 ปีที่แล้ว

    looking Beautifull in shaull

  • @vikastiwari6478
    @vikastiwari6478 2 ปีที่แล้ว

    Thanks bhupinder sir 🙏

  • @keshavgupta417
    @keshavgupta417 2 ปีที่แล้ว

    Legend is back 👍😂

  • @jaideepkumar3778
    @jaideepkumar3778 2 ปีที่แล้ว

    Great Sir...

  • @jsudarshan9567
    @jsudarshan9567 2 ปีที่แล้ว

    Thanks you sir

  • @hinduhindu12
    @hinduhindu12 2 ปีที่แล้ว

    Good one

  • @kamilmansoor9193
    @kamilmansoor9193 2 ปีที่แล้ว

    shukriya sir

  • @Saathvikpaswan
    @Saathvikpaswan 2 ปีที่แล้ว

    Best teacher

  • @prabhatshivhare4595
    @prabhatshivhare4595 ปีที่แล้ว

    Sir plzz bring lectures on cloud native training like kafka grafna elastic search fluentbit etc.

  • @bhalendrasharma5283
    @bhalendrasharma5283 2 ปีที่แล้ว

    Thank you sir ☺️☺️☺️

  • @mantukumar-qn9pv
    @mantukumar-qn9pv 2 ปีที่แล้ว

    Dear guru ji, aapse gujarish hai ki ek video ECS per bhi bana dijiye taki concept clear ho jaye kubernetes ka to master bana hi diye 🙏🙏🙏🙏🙏🙏🙏🙏

  • @engrqamarabbas9753
    @engrqamarabbas9753 2 ปีที่แล้ว

    great, thanks a lot

  • @KidsStoryTime-
    @KidsStoryTime- ปีที่แล้ว

    Thanks sir 🙏

  • @marvelindia9975
    @marvelindia9975 2 ปีที่แล้ว +1

    Sir ccna ke topics pe bhi videos banao na plzz
    From rajasthan

  • @shambhunathsahani6505
    @shambhunathsahani6505 2 ปีที่แล้ว

    Great Sir 😊

  • @pcpanda80
    @pcpanda80 2 ปีที่แล้ว

    First View

  • @aBcXyZaB
    @aBcXyZaB 2 ปีที่แล้ว +1

    Terraform ka v video upload kare sir???