Kubernetes Tutorial for Beginners [1 Hour Course]

Поділитися
Вставка
  • Опубліковано 28 вер 2024

КОМЕНТАРІ • 51

  • @g-jalil6961
    @g-jalil6961 Рік тому +7

    Guys, You deserve 30m reviews and more. Keep doing it. Wonderful videos. Give it some more time and you"ll get millions of subscribers

    • @DevOpsJourney
      @DevOpsJourney  Рік тому +2

      Thanks so much! Comments like yours and sharing these videos will help us get there in no time ❤️

  • @nhattran536
    @nhattran536 Рік тому +1

    One of the best DevOps content available on the internet #hero

  • @blanky_nap
    @blanky_nap 2 роки тому +6

    Would be great to see K8s on AWS! Thanks!

  • @nielsroetert
    @nielsroetert 10 місяців тому

    Great video, using it as a refresher. Don't forget to manually delete your old configmaps when adding new ones by changing their version-number, the 'k delete -f v3.yml' will leave those behind.

  • @DevOpsJourney
    @DevOpsJourney  2 роки тому +31

    Planning on doing more Kubernetes content for September/October. Let me know what kind of other Kubernetes content you would like to see!

    • @biswajitmohapatra2172
      @biswajitmohapatra2172 2 роки тому +7

      Probably we want real time application deployment on kubernetes cluster.. Plz make a separate video on it!!

    • @canahmetbe
      @canahmetbe 2 роки тому

      Devops

    • @vamshikrishna4579
      @vamshikrishna4579 2 роки тому +2

      Please do a complete Kubernetes series..after which may be aks or eks

    • @alucard_kil
      @alucard_kil 2 роки тому +2

      helm, operator, istio, knative, RBAC off the top of my head

    • @pantch12345
      @pantch12345 2 роки тому

      Hey, great tutorial thanks. Was wondering if you are planning to do tutorial for AKS? Thanks 🙂

  • @lukesemail6980
    @lukesemail6980 Рік тому +4

    Echoing what's already been said here: Your videos have been BEYOND helpful to me! Thank you for all you've done and continue to do. :)

  • @unmatal
    @unmatal 2 роки тому +2

    Thank you so very much
    It's a beautiful presentation
    There much to learn
    And you made the learning very easy
    Much appreciate the immense time and effort you put into it

  • @AAGamersAus
    @AAGamersAus 10 місяців тому

    very well prepared and narrated, great job

  • @edricksuarez7003
    @edricksuarez7003 3 місяці тому

    Thank you so much for your video it gave me more understanding of Kubernetes

  • @RajivBandaru
    @RajivBandaru 2 роки тому

    Yes. This is what we want. Thanks a lot.

  • @thedeadbaby
    @thedeadbaby 7 місяців тому

    "everything should work out ok" famous last words.

  • @remigrz
    @remigrz 3 місяці тому

    Thanks!

  • @hlmco
    @hlmco Рік тому

    Awesome content, thanks so much!

  • @kabir0x23
    @kabir0x23 Рік тому +1

    just awesome

  • @saravanant1529
    @saravanant1529 Рік тому

    very good explanation

  • @nitindupare6796
    @nitindupare6796 Рік тому

    when we install the Virtual Box on windows and setup few VMs in it. After installing Docker Desktop VMs fail to start on windows. is any one faced similar error.

  • @soodankit1993
    @soodankit1993 Рік тому

    @Devops Journey I might be wrong here but doesn't m here means "thousandth of a core". This means it 50m should only be 5%.

    • @DevOpsJourney
      @DevOpsJourney  Рік тому

      yeah it would be 5%. Maybe I said something differently in the video? Do you have a timestamp?

    • @soodankit1993
      @soodankit1993 Рік тому

      @@DevOpsJourney Thank for confirming. It's 53:30.

  • @HackerPULSE90
    @HackerPULSE90 8 місяців тому

    Here's how you can create an alias for kubectl in Powershell:
    Set-Alias -Name k -Value kubectl

  • @sowjanyagam3099
    @sowjanyagam3099 Рік тому

    When I first do 'minikube service hello-node -n prod' (my deployment is in prod namespace) I get a connection refused page. How to resolve this?

    • @sowjanyagam3099
      @sowjanyagam3099 Рік тому

      Ok, I have been using another port like 8181 to expose the service as I had Jenkins running on localhost:8080 (I thought it'll clash but service opens up entirely different 3rd port on browser... I still need to understand what happens). But exposing the service at 8080 as said in video works. Maybe this hello-node container is configured to listen to 8080 by default.

  • @normastanley4977
    @normastanley4977 2 роки тому

    ᵖʳᵒᵐᵒˢᵐ

  • @liquidcode1704
    @liquidcode1704 2 роки тому +3

    lets fknnn goo, this is what I wanted!

  • @ericzell4138
    @ericzell4138 Рік тому +1

    At 3:45 and 3:50 it seems the Scheduler and Controllers do the same thing?

  • @ajimbong1623
    @ajimbong1623 Рік тому +1

    It will be great if you consider making a premium course. I love the way you break down concepts.

  • @vinvvinv7460
    @vinvvinv7460 2 роки тому +1

    Hi,
    Can you please make a video & explain how to write an ansible playbook in a very simple way? It's a bit confusing regarding spaces & hyphens. I think it's called indentation. In terraform as well its used spaces and curly brackets etc
    I am not from a programming or DevOps background so find it confusing where & when these things should be applied in both the tools. Also Variables. Kindly if possible please explain it in simple terms as if you are explaining it to someone who does not have any knowledge about it.
    Please it's a request. Kindly reply

  • @thedeadbaby
    @thedeadbaby 7 місяців тому

    The diagram at 9:28 seems confusing. You've got one state machine diagram object (AWS ELB) and it pipes directly to a "Front End Service". What's the point of a load balancer if it doesn't distribute load and just throws it at a single thing (Front End Service)? Is the Front End Service replicated somehow to make it so the AWS ELB actually distributes load across the Front End Service in case one Front End Service is unable to handle requests? One other thing: if the load balancer is the absolute most critical part of the architecture (failure there means Kubernetes doesn't even matter anymore), why hasn't kubernetes been used to do replicasets on the load balancer? Is this just because kubernetes can't or is it so complicated to do so, it's not worth it? Seems like the tool doesn't do what it should do, which is provide high availability and you're making exceptions for the load balancer to do things its own way. Also, it sounds like you're putting a load balancer in front of a load balancer. This sounds way too weird.

  • @berkayzanile
    @berkayzanile Рік тому +1

    I love your videos man! You make it look super easy!

  • @codingcambodia
    @codingcambodia Рік тому +1

    thanks for the video

  • @chandansahoo2925
    @chandansahoo2925 Місяць тому

    Amazing

  • @IgnacioFernandezQuesada
    @IgnacioFernandezQuesada Місяць тому

    Thanks!!

  • @FizWiz91
    @FizWiz91 4 місяці тому

    This video was a beautiful and easy-to-follow introduction for me to Kubernetes. I can't believe I've been putting off learning for so long thinking it was something super complicated.
    Thank you, Brad.

  • @anaoddles5305
    @anaoddles5305 6 місяців тому

    Very good instructor, highly recommend this video to anyone trying to get a high level overview of Kubernetes and Orchestration. Thanks so much @DevOps Journey!

  • @bahaael-dinahmed6954
    @bahaael-dinahmed6954 8 місяців тому

    Great content, simple and neat 👌👌👌
    One simple question, what is the cli tool u r using ?

  • @shvetashva
    @shvetashva Рік тому

    Great video. Thanks a lot for sharing this

  • @Martin-od4ij
    @Martin-od4ij 11 місяців тому

    Legend thanks man!

  • @smooth_code_channel
    @smooth_code_channel Рік тому

    great tutorial thanks

  • @AmjadArbasi
    @AmjadArbasi Рік тому

    Thank you for all your work, I have a question! How do you make PowerShell look like this?

    • @DevOpsJourney
      @DevOpsJourney  Рік тому +1

      It's windows terminal + zsh/starship. I go over my setup in this video ua-cam.com/video/XBU_6OSlgyI/v-deo.htmlsi=wLAaXfWZDAQpP1Rn

  • @MrKatdar
    @MrKatdar Рік тому +2

    I had no clue about kubernetes before this video, so pls don'tget me wrong I. At 50:25 you had too many pods (10) and you said we can leave our comments. I believe that happened because you did not terminate the previous terminal where you run the previous minikube service. So once you run apply command for v3, minikube started updating according to the v3 file(terminating the old ones and creating the new pods). I close my terminal before running kubectl apply -f v3.yaml command and I have only 5 pods and I dontsee any terminating pods, I guess they were terminated after I close the terminal. Thanks a lot for these videos. Greetings from Istanbul/Turkey.

  • @greob
    @greob 2 роки тому +2

    Thanks for sharing, I enjoy K8s and Docker content these day.

  • @basu_104
    @basu_104 Рік тому

    Oh wow insane content. Generated about 7 pages of notes. 🫡