A Crash Course in Azure Kubernetes Services

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 มี.ค. 2019
  • Kubernetes is the king of container orchestration and the results are clear: More than ever, employers are looking for IT professionals that know Kubernetes. It can, however, be hard to get started with Kubernetes, because it is not trivial software.
    In this webinar, we’ll help you get started with Kubernetes, particularly Azure Kubernetes Services, as we break it down into bite size chunks so you can get a jump start on your Kubernetes experience.
    Scripts and other demos can be found here: github.com/theonemule/aks-demos
    Demo 1 and Demo 2 in the Git Repo apply to this video.
    Wintellect:
    WintellectNOW: www.wintellectnow.com/
    Blaize's Website: www.blaize.net/
    Twitter:
    Blaize: / theonemule
    Wintellect: / wintellect
    WintellectNOW: / wintellectnow
  • วิทยาศาสตร์และเทคโนโลยี

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

  • @GurpreetSingh-gc4ps
    @GurpreetSingh-gc4ps 4 ปีที่แล้ว +4

    One of the best quality content on AKS

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

    Thanks for this very informative video. I liked the clear explanations. Very tempted to setup the Dos game server.

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

    Very nice video. thanks!

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

    Thanks a lot, great content !!

  • @04chavez
    @04chavez 3 ปีที่แล้ว +1

    Great video

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

    Great job

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

    Informative

  • @aameerraza2632
    @aameerraza2632 3 ปีที่แล้ว

    Woo! great explanation... but I was a bit confused about Replica sets & Replication controller... Was the definition altered in slides?

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

      I don't think so. Replica Sets and Replicaiton controllers are a simple way to deploy things. I would use deployments, which do basically the same thing, but give you a lot more options for doing versioning, rollbacks, etc.

  • @simonlock9718
    @simonlock9718 4 ปีที่แล้ว

    Thanks for a great presentation. Does AKS support Windows containers now?

    • @Atmosera-
      @Atmosera-  4 ปีที่แล้ว

      Yes. We recently did a video on this. It's a brand new feature.
      th-cam.com/video/cRTZFPomQQ0/w-d-xo.html

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

    Fantastic vid. Minor gripe: All pod depictions show 2+ containers, whereas narrator states you should almost never have > 1.

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

      "Never" is a strong word. The idea of more than one application pod is probably what that's getting at. A pod will often have a "sidecar" container.

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

      @@Atmosera- Fair point, which is why I qualified with "almost." What functionality do you most often see in pod sidecars?

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

    nice course,pls share the sripts mentioned in description .

    • @Atmosera-
      @Atmosera-  5 ปีที่แล้ว

      Good call....

    • @Atmosera-
      @Atmosera-  4 ปีที่แล้ว

      Check it out here! :) github.com/theonemule/aks-demos

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

    Save time. Start @4:10

  • @AnilMandapaka
    @AnilMandapaka 4 ปีที่แล้ว

    Hi ,I tried to communicate 2 aks cluster ,but failed .is there any way to communicate between 2 clusters?????

    • @Atmosera-
      @Atmosera-  4 ปีที่แล้ว

      Depends on how you want them to communicate. You can put two clusters on the same VNet, or separate VNet's and use peering for internal apps. Or you can have them reach over the internet between one clusters public end points.

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

    I am building a containerized web application that has a .net frontend container and a REST Api backend container.
    I'd like to know which of these options is the best for our needs:
    · Deploy everything in the same cluster and node pool and let kubernetes manage and scale them as needed
    · Deploy everything in the same cluster and 2 different node pools with different machine types and node limits for frontend and backend
    · Deploy frontend and backend in different clusters all together with a single node pool each

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

      How you deploy it depends on what you're trying to do.
      Different node pools would imply that the compute needs for the front end and backend are different. If they're not, then I wouldn't use that.
      You could use the same node pool and the same cluster as a default and see how it performs, then tune it from there.
      I wouldn't use multiple clusters though. There's no need for that.

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

      @@Atmosera- thank you so much for your reply

  • @jagkoth
    @jagkoth 4 ปีที่แล้ว

    Bro what is the password that you used to login into your vnc ? :)

    • @Atmosera-
      @Atmosera-  4 ปีที่แล้ว

      Password1 :P

    • @jagkoth
      @jagkoth 4 ปีที่แล้ว

      WintellectNOW Thank you appreciate that :)

  • @shashibailey
    @shashibailey 3 ปีที่แล้ว

    Hi how do we login to an existing AKS cluster?

    • @Atmosera-
      @Atmosera-  3 ปีที่แล้ว

      You can use the Azure CLI.
      az aks get-credentials --name AKSClusterName -g ResourceGroup

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

      @@Atmosera- thanks a lot

    • @shashibailey
      @shashibailey 3 ปีที่แล้ว

      How can we add more than one variable per cluster ?

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

    Please share the scripts! Thanks for a great video. Cheers.

    • @Atmosera-
      @Atmosera-  4 ปีที่แล้ว +1

      Check it out here! :) github.com/theonemule/aks-demos

  • @luismesagrave
    @luismesagrave 3 ปีที่แล้ว

    All commercials until 04:10

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

    Thanks, scripts please.

    • @Atmosera-
      @Atmosera-  4 ปีที่แล้ว

      Check it out here! :) github.com/theonemule/aks-demos

  • @nikhilkenvetil1594
    @nikhilkenvetil1594 4 ปีที่แล้ว

    17:56 - Where's the script man?

    • @Atmosera-
      @Atmosera-  4 ปีที่แล้ว +1

      You can do it really easily now with the AZ CLI. The method in this video is a bit dated, so check out this link here.
      docs.microsoft.com/en-us/azure/aks/cluster-container-registry-integration

  • @sachinmishra5218
    @sachinmishra5218 4 ปีที่แล้ว

    How to give the valid to name to ingress IP ? Because real world difficult to access IP but users ?
    Can you please suggest ?

    • @Atmosera-
      @Atmosera-  4 ปีที่แล้ว +1

      For the external IP, you can use the generated hostname with Azure or you can use an external DNS with a custom domain name and a static IP on Azure.
      With internal IP's, you can use Azure DNS for a private DNS zone, and add a record to that for your private IP's. You can then set the DNS resolver for the cluster to use the the private DNS

    • @sachinmishra5218
      @sachinmishra5218 4 ปีที่แล้ว

      @@Atmosera- Thanks for your reply.

    • @sachinmishra5218
      @sachinmishra5218 4 ปีที่แล้ว

      @@Atmosera- Do you have any example for it ?
      I mean any content or video as such

    • @Atmosera-
      @Atmosera-  4 ปีที่แล้ว

      @@sachinmishra5218 I don't, but here is the Azure doc for it.
      docs.microsoft.com/en-us/azure/dns/private-dns-overview

  • @swenmeinert3967
    @swenmeinert3967 4 ปีที่แล้ว

    I lost you at 16:59. Out of a sudden, you talk about Container Registry with a script from the planet Krypton involved that does: .

    • @Atmosera-
      @Atmosera-  4 ปีที่แล้ว

      The script does not exist anymore. It can be done right from the Azure CLI.

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

    "container lover" - when u have no social life

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

    Notepad++ 👀

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

      Best IDE Ever

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

      @@Atmosera- #triggered