Тёмный
No video :(

A Crash Course in Azure Kubernetes Services 

Atmosera
Подписаться 12 тыс.
Просмотров 63 тыс.
50% 1

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/the...
Demo 1 and Demo 2 in the Git Repo apply to this video.
Wintellect:
WintellectNOW: www.wintellect...
Blaize's Website: www.blaize.net/
Twitter:
Blaize: / theonemule
Wintellect: / wintellect
WintellectNOW: / wintellectnow

Опубликовано:

 

28 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 58   
@GurpreetSingh-gc4ps
@GurpreetSingh-gc4ps 4 года назад
One of the best quality content on AKS
@codewithmind
@codewithmind Год назад
Informative
@bertusviljoen4201
@bertusviljoen4201 4 года назад
Thanks for this very informative video. I liked the clear explanations. Very tempted to setup the Dos game server.
@nakulagham2058
@nakulagham2058 2 года назад
Thanks a lot, great content !!
@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?
@cp1408
@cp1408 4 года назад
Very nice video. thanks!
@04chavez
@04chavez 3 года назад
Great video
@aryamousavi4850
@aryamousavi4850 3 года назад
Great job
@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 года назад
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 года назад
@@Atmosera- thank you so much for your reply
@edufur
@edufur 3 года назад
Save time. Start @4:10
@naren2talk
@naren2talk 5 лет назад
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
@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 года назад
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.
@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.
@luismesagrave
@luismesagrave 3 года назад
All commercials until 04:10
@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. ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-cRTZFPomQQ0.html
@jagroshansingh6506
@jagroshansingh6506 4 года назад
Thanks, scripts please.
@Atmosera-
@Atmosera- 4 года назад
Check it out here! :) github.com/theonemule/aks-demos
@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 года назад
@@Atmosera- thanks a lot
@shashibailey
@shashibailey 3 года назад
How can we add more than one variable per cluster ?
@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 года назад
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
@alphanuevo
@alphanuevo 4 года назад
Please share the scripts! Thanks for a great video. Cheers.
@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 года назад
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
@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.
@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 :)
@TheJDieJ
@TheJDieJ 2 года назад
"container lover" - when u have no social life
@Atmosera-
@Atmosera- 2 года назад
Lolz
@drgr33nUK
@drgr33nUK 3 года назад
Notepad++ 👀
@Atmosera-
@Atmosera- 3 года назад
Best IDE Ever
@drgr33nUK
@drgr33nUK 3 года назад
@@Atmosera- #triggered
Далее
Azure Kubernetes Service (AKS) Networking Deep Dive
1:03:48
The Fan’s Fang Skin🔥 | Brawl Stars Sneak Peek
00:16
Azure Kubernetes Service (AKS) High Availability
1:04:59
Docker Crash Course for Absolute Beginners [NEW]
1:07:39
Azure Kubernetes Services (AKS) Overview
23:34
Просмотров 134 тыс.
Kubernetes Crash Course for Absolute Beginners [NEW]
1:12:04
Terraform with Azure Kubernetes Service
27:56
Просмотров 23 тыс.