Hello Nana, Appreciate your efforts in putting up this course. Can you also provide a section here on pre-requisites to learn Kubernetes? Is this for a techie or even a non-techie can take this course? These info will be very helpful.
For those of you, who got stuck at 2:13:00 and cannot follow along the course, because there is no kubernetes-dashboard in kubernetes. Just execute '$minikube dashboard' and K8s will generate it for you automatically
or just do minikube addons enable dashboard && minikube tunnel to understand how everything is working as minikube dashboard will setup all for you and you won't learn which actually she is trying to tell :)
this is my 4rth day on learning devops and everything started to make sense after watching 3 full videos. docker, jenkins, kubernetes. i'm no longer confuse thanks to these amazing people on youtube puting up amazing works.
After searching for a good Kubernetes tutorial for years, I believe I've finally found the best one! Thanks for a great content and getting directly to the point with the right balance of lecture and demo.
This was...is...priceless! Kudos Nana for this awesome crash course through k8s! As others have also said, this was the first time I spent 3:37 hours watching a video, with no breaks! ❤️
@@TechWorldwithNana good evening, thanks for the video!! one the bests, even for a newbie like me! just 1 question: i'am at minute 1.44.55 (tried to create a full deployment with mongodb, but i have errors!!) the browser keep asking me credentials after launching minikube service eccecc... so where i can find those infos? i tried also to put them not coded, or removed comments. #help!! i'll try to remake from 1.16.00 (start of example) till this point. maybe i forgot something. thanks again. i apreciate a lot this kind of contents. if well followed or learned can be very useful in certifications or job activities logs of creating the mongo expr yaml i followe min by min, step by step. just a the versione mong image (4.4.6. instead of 5+, because of AVX error). C:\Users\oskal\esempio_mongo_expr_k8s>k logs mongo-express-859f75dd4f-bhvnq Waiting for mongo:27017... /docker-entrypoint.sh: connect: Connection refused /docker-entrypoint.sh: line 15: /dev/tcp/mongo/27017: Connection refused Tue Mar 5 00:06:15 UTC 2024 retrying to connect to mongo:27017 (2/10) /docker-entrypoint.sh: connect: Connection refused /docker-entrypoint.sh: line 15: /dev/tcp/mongo/27017: Connection refused Tue Mar 5 00:06:16 UTC 2024 retrying to connect to mongo:27017 (3/10) /docker-entrypoint.sh: connect: Connection refused /docker-entrypoint.sh: line 15: /dev/tcp/mongo/27017: Connection refused Tue Mar 5 00:06:17 UTC 2024 retrying to connect to mongo:27017 (4/10) /docker-entrypoint.sh: connect: Connection refused /docker-entrypoint.sh: line 15: /dev/tcp/mongo/27017: Connection refused Tue Mar 5 00:06:18 UTC 2024 retrying to connect to mongo:27017 (5/10) /docker-entrypoint.sh: connect: Connection refused /docker-entrypoint.sh: line 15: /dev/tcp/mongo/27017: Connection refused Tue Mar 5 00:06:19 UTC 2024 retrying to connect to mongo:27017 (6/10) /docker-entrypoint.sh: connect: Connection refused /docker-entrypoint.sh: line 15: /dev/tcp/mongo/27017: Connection refused Tue Mar 5 00:06:20 UTC 2024 retrying to connect to mongo:27017 (7/10) /docker-entrypoint.sh: connect: Connection refused /docker-entrypoint.sh: line 15: /dev/tcp/mongo/27017: Connection refused Tue Mar 5 00:06:21 UTC 2024 retrying to connect to mongo:27017 (8/10) /docker-entrypoint.sh: connect: Connection refused /docker-entrypoint.sh: line 15: /dev/tcp/mongo/27017: Connection refused Tue Mar 5 00:06:22 UTC 2024 retrying to connect to mongo:27017 (9/10) /docker-entrypoint.sh: connect: Connection refused /docker-entrypoint.sh: line 15: /dev/tcp/mongo/27017: Connection refused what can i do ? thanks a lot! oussama
The problem with this big long video is that I can like it only once! 😁 It's extremely well organised, crystal clear... and free! Thank you so much for your amazing work.
ALL tutorial creators should strive to meet this standard ... I have NEVER seen anything THIS complete and well done. Kudos to "TechWorld with Nana" 🏆💎💎💎
5 other Kubernetes videos washed over the top of me, while Nana's organization & continuous visual aids made learning Kubernetes not only attainable but an enjoyable experience... I believe a big difference is her knowledge & understanding of the intricacies & their correlation becomes clear with her ability to break down the concepts & infor into easily digestible pieces. Thank you very much!
I just completed 45 minutes of the course. I knew it is going to be among the best Kubernetes tutorial out there. Thank you for sharing your excellent knowledge on this topic.
The best tutorial ever I have seen about Kubernetes with full of crystal clear explanation! I highly recommend this content for beginners or even business people who are not certain about how these service apps are actually being deployed😊
Just like I've told people that Code Complete is the quickest 1,000 pages they'll ever read, your tutorial is the quickest 4 hour video I've ever watched. Well structured without diving into too many details out of the gate. Thanks a bunch for putting this together!
My God!! I recently started working on K8 at my workplace. I was so overwhelmed. But you literally solved all my doubts in a single video!! Thank you so much!!
I have some docker experience, but I am learning Kubernetes for the first time. I watched many videos for explanation, but the content was really confusing. This is the best well explained tutorial about kubernetes I have seen in 2024.
First of all thanks a lot for this kind of fully hands on tutorial. Very helpful. One small correction - In 2:13:17 when you are showing the ingress installation and then get the pod from kube-system, it would be actually from another namespace ingress-nginx. I have checked that in my own system.
thats correct. ingress will be from ingress-nginx namespace. if we have multiple applications routed using ingress and to use with ingress ip. "kubectl get ingress -n ingress-nginx" will provide port to use for accessing the application
Beware at about minute 13:50 => base64 is not an encryption. It's just an encoding. So it means that there's no additional safety in comparison with a plain text file: IT IS a plain unencrypted text file. Anyone that has kubernetes API access, or the underlying data store, and so on... can retrieve those passwords. Unless you specifically enable encryption (NOT base64), or using RBAC rules.
echo -n 'username' | base64 is not working in my window 10. Due this I am unable to login mongo-express browser.it is asking credentials.. Can anyone help me on this
@@kirankumarkavali3897 you can do it via powershell with: [Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes("username")) and you can do it also the other way around for recheck: [System.Text.Encoding]::ASCII.GetString([System.Convert]::FromBase64String("dXNlcm5hbWU=")) where the inserted string is the output of the first one
@@kirankumarkavali3897 You need to enter credentials for the web login of the mongo-express container. The default values for the first login are "admin" for username and "pass" for password. You can read it in mongo-express documentation.
@@samyaktjain698 the new kubernetes can use other containerd, but IMO if you just want to follow the tutorial, just use docker to remove unnecessary confusion
one of the rare videos on RUclips where I knew 'how stuff works' but still continued watching. Just sheer brilliance of the presentation and ability to engage the audience.
I've been working with kubernetes and golang for half an year, and I feel that I understand about all the concepts only after watching your tutorial. Thank you so much, sincerely.
During my 1st parental leave, my son always fell asleep when I watched your videos. And me? I came back from parental leave with more knowledge than ever before! Mini-Dev II is coming into the world at the turn of the year and I'm so glad to have the chance to see all your new stuff again Nice Regards from Nina to Nana :)
Hi Nina, that's so cool to hear 😀 I'm really happy you were able to learn new stuff from my channel during your parental leave and are able to further educate yourself! Regards back 😊
I worked with Kubernetes for two years but still found this video informative, well structured, and to the point. You are really a talented instructor. Keep it up!
The best course out there on Kubernetes. The animations, graphics and demos made every concept easy to understand. Nana has a gift for explaining things clearly.
Congrats Nana, top quality course. The pace of your voice is on point and the content is so well structured (and illustrated) I would easily pay for it.
Yep, I have to agree. I keep telling folks that these "200h courses" about Docker are wasting people's time, but you manage to condense the right amount of theory and practice to make the learning process very efficient! If you have a Patreon page I'd definitely contribute, and I'm sure a good amount of people too :-) Cheers!
Speechless Nana.. Somebody said sharing is caring.. this shows how good human being you are....Hatsoff to you for this selfless service Nana..If there's is a GOD in this world, then I think he should really bless you with lots of good luck and happiness..All the best 👍
I have to say, not only is the content of this course very detailed yet specific, but your delivery style and pace is more than amazing. I have been unable to sit through 3 hours course video. I have got through this with ease....albeit over 3 days. I want to say a massive thank you for your amazing work here. I hope you continue and I will definitely be checking out your other videos.
I waited and watched the whole presentation, and I was very pleased with your presentation on Kubernetes. I come from a cloud environment and Kubernetes managed containers seems like the natural next step after VM hosting. It was easy to understand with BASH level commands that were straightforward, and you explained yaml files for the kubectl commands to manage more lengthy and complex commands. It was a comprehensive and authoritative presentation without any "fluff". Thanks for a terrific tutorial. I am diving into your Python presentation now. I have the O' Reilly book on Python but your information is likely more up to date than my O'Reilly book from 2016 so onward!
as happy as I am to see content like this free on youtube, it is sad that I get a better education and instruction from youtube than I ever did in college. Keep it up Nana, you rock.
Hi Nana, you might want to know that the demo project (MongoDB) no longer works with the latest image. I had to use mongo:3.16, which was the latest version at the time you recorded this video. It might be worth adding a note to your video at 1:19:45 that those following along should use mongo:3.16
Actually no =) Troubleshooting is the main responsibility of any DevOps. So as much not fully working stuff in tutorials such better DevOps will grow on them =)
@@Fessant what did you do at 52:49 to get the pod to return with "Container Creating", when I run the command I'm hit with "ImagePullBackOff" thanks in advance
@@storegodly4004 the main reason is the default time to pull mongo image is shorter than the actual time it needs . you can use this command to pull the image first, then start the configuration file : minikube ssh docker pull mongo
@@Fessant Saccent little shit if you are so good help others understand what's wrong, don't lecture people on how you should be doing "DevOps" growth. We're all here to learn and grow.
Amazing stuff! This is one of the best tech youtube content I watched without boredom. You had a talent to demo complex topics in ease. Thank you for making this conent open for everyone!
One cannot get a better content than this. You absolutely made it look so easy to understand and work on. Hats-off to your content, course management, presentation and knowledge. Keep up the good work. Thanks.
Nana you are the best! I'm starting my first DevOps/tech job in a few weeks. I feel so confident after watching your videos. I will definitely support your Udemy courses. Keep up the good work
Thanks Nana, really appreciated! Also, in case anyone else missed it when I tried to connect to the express Web Interface I was prompted for login. The default web creds are "admin:pass"
Whoever wants to start with K8s, please go with this one.. Really a well organized and nice animations.. 4 hours of free content without compromising quality and delivery of the concepts.. Hats off!!!
Hands down, Nana is easily one of my best DevOps Teachers. The way you easily disintegrate every individual concept is astonishing. It's one thing to know so much, it's another to know how to flawlessly relate the knowledge to others. You embody all. Keep educating the world. Thank you for the priceless service to tech humanity! With love from Nigeria
Hats off to you. This crash course and other videos you uploaded is amazing. Love your content. Well structured and clear explanation. You are truely amazing. Thanks!
For those of you who are using Apple M1 chip mac, at 42:15 you can use minikube start --driver=docker command to start minkube as hyperkit requires x86_64 arch but Apple M1 chip mac is based on arm arch
On of the best tutorial ever. Simple and very well explained, great examples. After this tutorial, you get a great knowledge about kubernetes principals, terminology and clear picture of how it works, how to use it. Bravo Nana!
This has to be the best Kubernetes for beginners video I have ever seen. 4 hours of pure gold content. Thank you very much for such an amazing tutorial
Your way of presenting information is great. Proper tempo, easy to listen, i don't have to speed up playback and I am not bored quickly - just perfect Thank you
If this course was helpful for you, please leave a like and subscribe 😊🙏
💙 Become a Kubernetes Administrator - CKA: bit.ly/3MQtij9
💚 Become a DevOps Engineer - full educational program: bit.ly/3MRjKEE
🔗 Useful Links:
► Main Kubectl Commands - K8s CLI Git repo: bit.ly/3oZzuHY
► K8s YAML Configuration File Git repo: bit.ly/2JBVyIk
► Demo project Git repo: bit.ly/3jY6lJp
► Kubernetes Ingress Git Repo: bit.ly/3mJHVFc
► Kubernetes Volumes Git Repo: bit.ly/2Gv3eLi
▬▬▬▬▬▬ Connect with me 👋 ▬▬▬▬▬▬
Join the private Facebook group ► bit.ly/32UVSZP
INSTAGRAM ► bit.ly/2F3LXYJ
TWITTER ► bit.ly/3i54PUB
LINKEDIN ► bit.ly/3hWOLVT
▬▬▬▬▬▬ Want to learn more? 🚀 ▬▬▬▬▬▬
DevOps Tools, like Terraform, Prometheus ► bit.ly/2W9UEq6
Jenkins Pipeline Tutorials ► bit.ly/2Wunx08
Kubernetes on Cloud ► ruclips.net/p/PLy7NrYWoggjxqLwqmbE-gGuxpo0nWZqCi
▬▬▬▬▬▬ Courses & Ebooks & Bootcamp 🚀 ▬▬▬▬▬▬
► Become a DevOps Engineer - full educational program 👉🏼 bit.ly/3gEwf4V
► High-Quality and Hands-On Courses 👉🏼 bit.ly/3nIouPW
► Kubernetes 101 - compact and easy-to-read ebook bundle 👉🏼 bit.ly/3mPIaiU
Hello Nana, Appreciate your efforts in putting up this course. Can you also provide a section here on pre-requisites to learn Kubernetes? Is this for a techie or even a non-techie can take this course? These info will be very helpful.
Hello, Nana , Thanks for your contribution to the community, I am in love with your videos
Thanks 🙏
What is the version of k8s in this tutorial?
Excellent Nana.
So you recorded over 3.5 hours of excellent content without any fillers or fluff + posted on youtube without monetizing with adds? Hats off to you!
ruclips.net/video/RWvYlrI3iPM/видео.html
Can we also get the slides presented s it would be good to revise?
shes building her brand
you live a weird life, my friend.
coz she do not need ours money, that's great !
For those of you, who got stuck at 2:13:00 and cannot follow along the course, because there is no kubernetes-dashboard in kubernetes. Just execute '$minikube dashboard' and K8s will generate it for you automatically
This comment should be pinned, thanks for the help
i love you 🤖 Thnks!
or just do minikube addons enable dashboard && minikube tunnel to understand how everything is working as minikube dashboard will setup all for you and you won't learn which actually she is trying to tell :)
This 1 big video tutorial is far better than the complete official K8 documentation. Thank you for making this available for free for everyone.
Happy to hear, thank you Nikhil! :)
this is my 4rth day on learning devops and everything started to make sense after watching 3 full videos. docker, jenkins, kubernetes. i'm no longer confuse thanks to these amazing people on youtube puting up amazing works.
How’s it going for you? Can you please share your learning experience and job scouting?
My full team is watching this. Really good content, happy to support your work.
That's really great to hear and thank you for your support Victor!
No skipping Ads on this one. The author should properly be compensated for such a great tutorial.
You are 100% right. I just watched a full 2 minute long add just because of this
I'm watching over Yt Vanced, sorry
Does skipping ads makes difference?
@@ronakpatel4909 yeah more ads watchtime = more money for creator
@@ronakpatel4909 they aren't payed for skipped ads, you just wasted time, bandwidth and electricity
After searching for a good Kubernetes tutorial for years, I believe I've finally found the best one! Thanks for a great content and getting directly to the point with the right balance of lecture and demo.
Thanks so much Ashok, really appreciate your feedback and support! :)
This was...is...priceless! Kudos Nana for this awesome crash course through k8s! As others have also said, this was the first time I spent 3:37 hours watching a video, with no breaks! ❤️
Thanks Bogdan! 💙
The only 3+ hour video I've ever watched on RUclips, you are an amazing instructor, truly love your content! Many thanks!
Thanks so much Ameya for your support! :)
No other k8s training required after this training. I am lucky to find such channel👍
Great to hear! Glad you found my channel too 😊
@@TechWorldwithNana Really awesome view. Thanks Nana
@@TechWorldwithNana
good evening, thanks for the video!! one the bests, even for a newbie like me! just 1 question: i'am at minute 1.44.55 (tried to create a full deployment with mongodb, but i have errors!!) the browser keep asking me credentials after launching minikube service eccecc... so where i can find those infos? i tried also to put them not coded, or removed comments.
#help!!
i'll try to remake from 1.16.00 (start of example) till this point. maybe i forgot something.
thanks again. i apreciate a lot this kind of contents.
if well followed or learned can be very useful in certifications or job activities
logs of creating the mongo expr yaml
i followe min by min, step by step. just a the versione mong image (4.4.6. instead of 5+, because of AVX error).
C:\Users\oskal\esempio_mongo_expr_k8s>k logs mongo-express-859f75dd4f-bhvnq
Waiting for mongo:27017...
/docker-entrypoint.sh: connect: Connection refused
/docker-entrypoint.sh: line 15: /dev/tcp/mongo/27017: Connection refused
Tue Mar 5 00:06:15 UTC 2024 retrying to connect to mongo:27017 (2/10)
/docker-entrypoint.sh: connect: Connection refused
/docker-entrypoint.sh: line 15: /dev/tcp/mongo/27017: Connection refused
Tue Mar 5 00:06:16 UTC 2024 retrying to connect to mongo:27017 (3/10)
/docker-entrypoint.sh: connect: Connection refused
/docker-entrypoint.sh: line 15: /dev/tcp/mongo/27017: Connection refused
Tue Mar 5 00:06:17 UTC 2024 retrying to connect to mongo:27017 (4/10)
/docker-entrypoint.sh: connect: Connection refused
/docker-entrypoint.sh: line 15: /dev/tcp/mongo/27017: Connection refused
Tue Mar 5 00:06:18 UTC 2024 retrying to connect to mongo:27017 (5/10)
/docker-entrypoint.sh: connect: Connection refused
/docker-entrypoint.sh: line 15: /dev/tcp/mongo/27017: Connection refused
Tue Mar 5 00:06:19 UTC 2024 retrying to connect to mongo:27017 (6/10)
/docker-entrypoint.sh: connect: Connection refused
/docker-entrypoint.sh: line 15: /dev/tcp/mongo/27017: Connection refused
Tue Mar 5 00:06:20 UTC 2024 retrying to connect to mongo:27017 (7/10)
/docker-entrypoint.sh: connect: Connection refused
/docker-entrypoint.sh: line 15: /dev/tcp/mongo/27017: Connection refused
Tue Mar 5 00:06:21 UTC 2024 retrying to connect to mongo:27017 (8/10)
/docker-entrypoint.sh: connect: Connection refused
/docker-entrypoint.sh: line 15: /dev/tcp/mongo/27017: Connection refused
Tue Mar 5 00:06:22 UTC 2024 retrying to connect to mongo:27017 (9/10)
/docker-entrypoint.sh: connect: Connection refused
/docker-entrypoint.sh: line 15: /dev/tcp/mongo/27017: Connection refused
what can i do ?
thanks a lot!
oussama
The problem with this big long video is that I can like it only once! 😁
It's extremely well organised, crystal clear... and free! Thank you so much for your amazing work.
ALL tutorial creators should strive to meet this standard ... I have NEVER seen anything THIS complete and well done. Kudos to "TechWorld with Nana" 🏆💎💎💎
I can confidently say that this is probably the best kubernetes tutorial you can find on RUclips
5 other Kubernetes videos washed over the top of me, while Nana's organization & continuous visual aids made learning Kubernetes not only attainable but an enjoyable experience...
I believe a big difference is her knowledge & understanding of the intricacies & their correlation becomes clear with her ability to break down the concepts & infor into easily digestible pieces. Thank you very much!
Just wow.... no small talk, only facts and knowledge explained in a visual, easily understandable way. Perfect!
Thank you Ruben, appreciate your feedback and support!
I just completed 45 minutes of the course. I knew it is going to be among the best Kubernetes tutorial out there. Thank you for sharing your excellent knowledge on this topic.
Really appreciate your positive words! Thank you 😊🙏
Exactly.....
@@TechWorldwithNana I'm facing problem with creating deployment. I tried using public and private repo in git hub as well.
The best tutorial ever I have seen about Kubernetes with full of crystal clear explanation! I highly recommend this content for beginners or even business people who are not certain about how these service apps are actually being deployed😊
Thanks a lot for creating this video and sharing it for free Nana! This video not only explains concepts clearly, but also make them memorable.
Just like I've told people that Code Complete is the quickest 1,000 pages they'll ever read, your tutorial is the quickest 4 hour video I've ever watched. Well structured without diving into too many details out of the gate. Thanks a bunch for putting this together!
I appreciate you being jokes-aside and to the point. So rare on youtube. No dumb comparisons, no side notes and no memes.
Thanks a lot Nana. You are doing wonderfull thing.
Great tutorial, I think it is the best available on the net about Kubernetes. Amazing work Nana!
Thanks so much, appreciate your support and feedback! :)
truly is!
My God!! I recently started working on K8 at my workplace. I was so overwhelmed.
But you literally solved all my doubts in a single video!!
Thank you so much!!
Thank you for such a well-structured and helpful tutorial! I really appreciate the work you do!
Thanks so much Jeffrey for your appreciation!
I watched the video a second time. Thank you for making such great content publicly available!
You're welcome, glad you liked it :) Thanks for the support as well!
2:13:33 If kebernetes-dashboard is not shown you can start dashboard (and have it shown under namespaces) using this command `minikube dashboard`
MVP
thank you!
I have some docker experience, but I am learning Kubernetes for the first time. I watched many videos for explanation, but the content was really confusing. This is the best well explained tutorial about kubernetes I have seen in 2024.
The best tutorial I have ever taken. Structured, easy to go back to, clear examples, keeping it essential, but not trivial. Love it!
Thanks, Nana! Your explanation with pictures is so easy to understand.
First of all thanks a lot for this kind of fully hands on tutorial. Very helpful. One small correction - In 2:13:17 when you are showing the ingress installation and then get the pod from kube-system, it would be actually from another namespace ingress-nginx. I have checked that in my own system.
thats correct. ingress will be from ingress-nginx namespace. if we have multiple applications routed using ingress and to use with ingress ip. "kubectl get ingress -n ingress-nginx" will provide port to use for accessing the application
I usually hate lectures.. but you capture me with the content. Appreciate you for the skills of tutoring. Really good.
Awesome walkthrough, I actually passed an interview after watching this
Cool congratulations Morris! :)
By far the best at explaining Kubernetes and all the other topics on your channel.
Thank you Jeff, happy to hear! 😊
Beware at about minute 13:50 => base64 is not an encryption. It's just an encoding. So it means that there's no additional safety in comparison with a plain text file: IT IS a plain unencrypted text file. Anyone that has kubernetes API access, or the underlying data store, and so on... can retrieve those passwords. Unless you specifically enable encryption (NOT base64), or using RBAC rules.
Hi Daniele, I talk about this issue in the new K8s Security Best Practices video: ruclips.net/video/oBf5lrmquYI/видео.html
echo -n 'username' | base64 is not working in my window 10. Due this I am unable to login mongo-express browser.it is asking credentials.. Can anyone help me on this
@@kirankumarkavali3897 you can do it via powershell with: [Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes("username")) and you can do it also the other way around for recheck: [System.Text.Encoding]::ASCII.GetString([System.Convert]::FromBase64String("dXNlcm5hbWU=")) where the inserted string is the output of the first one
@@kirankumarkavali3897 you need admin and pass as credentials
@@kirankumarkavali3897 You need to enter credentials for the web login of the mongo-express container. The default values for the first login are "admin" for username and "pass" for password. You can read it in mongo-express documentation.
All I have to say is THIS IS AWESOME, I spent the whole day watching and applying this. You finished a week in 4 hours!!!! love it and keep it up !!!!
I'm happy to hear! Thank you so much for your positive comment 😊
@@TechWorldwithNana Mam, Docker is prerequisite for this video?
@@samyaktjain698 the new kubernetes can use other containerd, but IMO if you just want to follow the tutorial, just use docker to remove unnecessary confusion
one of the rare videos on RUclips where I knew 'how stuff works' but still continued watching. Just sheer brilliance of the presentation and ability to engage the audience.
Thank you so much for such positive words!
Hello Nana, I am going to keep your photo in pooja room 🙏🙏🙏
Thank you so much for the content.
Long live-!
I watched 20 minutes and I already think that this is the best k8s course, great job and wonderful effort.
It's amazing to see someone who is willing to give so much without asking. Thank you so much, I learned so much thanks to you.
I've been working with kubernetes and golang for half an year, and I feel that I understand about all the concepts only after watching your tutorial.
Thank you so much, sincerely.
Many Thanks Nana :) Small peice of token to appriciate your efforts to make Docker & Kubernetes vedios well explained, precise & complete.
Thanks for your support :)
Damn! 3 hours 37 minutes! 🔥
Only goes to show how much effort you are ready to put! #respect
Thanks Ajat 🙏
Your communication skills surpass every other youtubers. Clear and effective.
Thanks once again for the brilliant content
During my 1st parental leave, my son always fell asleep when I watched your videos. And me? I came back from parental leave with more knowledge than ever before! Mini-Dev II is coming into the world at the turn of the year and I'm so glad to have the chance to see all your new stuff again
Nice Regards from Nina to Nana :)
Hi Nina, that's so cool to hear 😀 I'm really happy you were able to learn new stuff from my channel during your parental leave and are able to further educate yourself!
Regards back 😊
Awesome Tutorial on RUclips for free.. Big effort with Animations for easy understanding..
Thank you for the great feedback and support Gnanakumar!
I literally learnt k8s in just a day. I can go and start working with it! Thanks so much :))
That's awesome to hear! 👍 😀
I am saying it again, WE HAVE TO SAVE THIS LADY, such a great lady and instructor, 10 minutes into the video and already became a fan of her 🥰🤩
Save her from what?
glazing master
Excellent is all I can say. I did not get this level of explanation even in a paid course. Very well done. Thanks and God bless you Nana.
Thanks a lot for a fantastic course. I have been using k8s for over a year now and even then i felt this course to be a great refresher!
Great to hear, thank you! :)
I worked with Kubernetes for two years but still found this video informative, well structured, and to the point. You are really a talented instructor. Keep it up!
+1
+1
I am 45 mins in this is already a great class. I highly appreciate your efforts. God bless you. ❤
What a lovely tutorial!! I struggled in my office work and now there is a ray of hope. My best wishes to the author!!
This is the best K8s content I have found to explain each component. Really helped clear things up for me!
Thanks Tom, happy to hear and thank you for your support!
The best course out there on Kubernetes. The animations, graphics and demos made every concept easy to understand. Nana has a gift for explaining things clearly.
First time exposure to K8S through your channel. The content is gold, thank you Nana
Congrats Nana, top quality course. The pace of your voice is on point and the content is so well structured (and illustrated) I would easily pay for it.
Thanks so much! :)
Yes... i'm just learning English and I can understand so perfectly every word that Nana says...
What an awesome video. These few hours saved me few days of scumbling on topic
i can't believe how great you are, it's literally the best material over all internet .
Thanks so much! 🙏
Its true, tnx Nana :-*
Couldn't agree more.
Yep, I have to agree. I keep telling folks that these "200h courses" about Docker are wasting people's time, but you manage to condense the right amount of theory and practice to make the learning process very efficient!
If you have a Patreon page I'd definitely contribute, and I'm sure a good amount of people too :-) Cheers!
I also didn't expect it to be this good. The explanations are clearer than other tutorials I have seen.
Wow! What a great and thorough introduction to Kubernetes. Thank you for making this available 😃🙏
Speechless Nana.. Somebody said sharing is caring.. this shows how good human being you are....Hatsoff to you for this selfless service Nana..If there's is a GOD in this world, then I think he should really bless you with lots of good luck and happiness..All the best 👍
Thanks so much! really happy to see my work is appreciated! :)
Well chosen content and great way of explanation.
It's 2023 and this crash course is still amazing, thank you Nana!
By far one of the most succinct and clearly explained videos on Kubernetes I have seen.
Thanks so much Amran! :)
I have to say, not only is the content of this course very detailed yet specific, but your delivery style and pace is more than amazing. I have been unable to sit through 3 hours course video. I have got through this with ease....albeit over 3 days. I want to say a massive thank you for your amazing work here. I hope you continue and I will definitely be checking out your other videos.
Thank you so much! 🙏 I really appreciate your comment and amazing feedback 💙
@@TechWorldwithNana
You are most welcome. We salute you
Really valuable and high-quality resource! Thank you and keep up sharing videos like this!! Regards from Buenos Aires (Argentina)
Thank you so much for this great feedback and your support!
This is master piece, i am not used to watch long tutorials but you made an absorbing one, so much respect and love to you Nana ❤️
I waited and watched the whole presentation, and I was very pleased with your presentation on Kubernetes. I come from a cloud environment and Kubernetes managed containers seems like the natural next step after VM hosting. It was easy to understand with BASH level commands that were straightforward, and you explained yaml files for the kubectl commands to manage more lengthy and complex commands. It was a comprehensive and authoritative presentation without any "fluff". Thanks for a terrific tutorial. I am diving into your Python presentation now. I have the O' Reilly book on Python but your information is likely more up to date than my O'Reilly book from 2016 so onward!
I can imagine the effort needed to create all this, thanks a lot Nana! 👏👌
Thanks for all your effort here and all other videos, Nana!
Love from Israel ❤❤
By FARRRRR one of the best lessons of any kind I've found on the internet. This was super helpful.
as happy as I am to see content like this free on youtube, it is sad that I get a better education and instruction from youtube than I ever did in college. Keep it up Nana, you rock.
Thank you Troy :)
An excellent tutor and her teaching give the highest form of understanding. As Nana teaches!! Many lean to learn from her.
Learning heaps from your content Nana! So very accessible and easy to understand.
Really happy to hear, thank you Floyd :)
Hi Nana, you might want to know that the demo project (MongoDB) no longer works with the latest image. I had to use mongo:3.16, which was the latest version at the time you recorded this video. It might be worth adding a note to your video at 1:19:45 that those following along should use mongo:3.16
Actually no =) Troubleshooting is the main responsibility of any DevOps. So as much not fully working stuff in tutorials such better DevOps will grow on them =)
@@Fessant what did you do at 52:49 to get the pod to return with "Container Creating", when I run the command I'm hit with "ImagePullBackOff" thanks in advance
@@storegodly4004 I noted mongo:3.6 instead of just mongo in the mongo.yaml file
@@storegodly4004 the main reason is the default time to pull mongo image is shorter than the actual time it needs . you can use this command to pull the image first, then start the configuration file : minikube ssh docker pull mongo
@@Fessant Saccent little shit if you are so good help others understand what's wrong, don't lecture people on how you should be doing "DevOps" growth. We're all here to learn and grow.
it's 2022 and still the best Kubernetes tutorial ❤
Amazing stuff! This is one of the best tech youtube content I watched without boredom. You had a talent to demo complex topics in ease. Thank you for making this conent open for everyone!
Hello Nana, Many thanks for the tutorial. Hats off for your efforts in creating this . Very useful
Thank you very much, appreciate your nice comment and support!
My infinite gratitudes for this course! And for docker one! Can't imagine how much of your time and efforts you've put into this work.
Thanks for your appreciation Marat! :))
ruclips.net/video/RWvYlrI3iPM/видео.html
One cannot get a better content than this. You absolutely made it look so easy to understand and work on. Hats-off to your content, course management, presentation and knowledge. Keep up the good work. Thanks.
Nana you are the best! I'm starting my first DevOps/tech job in a few weeks. I feel so confident after watching your videos. I will definitely support your Udemy courses. Keep up the good work
Thanks Nana, really appreciated!
Also, in case anyone else missed it when I tried to connect to the express Web Interface I was prompted for login. The default web creds are "admin:pass"
Absolutely fantastic tutorial, covered everything I needed to not feel overwhelmed. Even two years later, worth watching. Fantastic work!
Thank you! Happy to read such amazing feedback! 🙏💙
Whoever wants to start with K8s, please go with this one.. Really a well organized and nice animations.. 4 hours of free content without compromising quality and delivery of the concepts.. Hats off!!!
Hands down, Nana is easily one of my best DevOps Teachers. The way you easily disintegrate every individual concept is astonishing. It's one thing to know so much, it's another to know how to flawlessly relate the knowledge to others. You embody all. Keep educating the world. Thank you for the priceless service to tech humanity!
With love from Nigeria
Thanks so much for this nice comment Ayobami!! :) Wish you all the best and greetings to Nigeria!
Hats off to you. This crash course and other videos you uploaded is amazing. Love your content. Well structured and clear explanation. You are truely amazing. Thanks!
Pp
0 mp
PP001165448IN
Unbelievable!!! Its worth every minute. Thank you Nana, your teaching skills are great! It is helping many of us to learn. God Bless you
Amazing Nana, its so good to see that everyone is liking. Keep it up.
Thanks for your nice words Raghav! 😊
@@TechWorldwithNana Waiting for one such for complete CI CD Pipeline also!
@@TechWorldwithNana Im having issue access minikube dashboard from the default Ip 192.168.99.101. Is there a way to change it to the localIP?
Perhaps one of the best RUclips tech tutorials, so organised and very easy to follow and remember
For those of you who are using Apple M1 chip mac, at 42:15 you can use minikube start --driver=docker command to start minkube as hyperkit requires x86_64 arch but Apple M1 chip mac is based on arm arch
This tutorial has really saved my bacon, I spent 3 days on it so far, taking notes and trying each step. Best kubernetes resource out there.
Really great to hear! Thank you so much! 😊
Thankyou:) for such an amazing course.Thankyou for making this. You are an amazing teacher
On of the best tutorial ever.
Simple and very well explained, great examples. After this tutorial, you get a great knowledge about kubernetes principals, terminology and clear picture of how it works, how to use it.
Bravo Nana!
This has to be the best Kubernetes for beginners video I have ever seen. 4 hours of pure gold content. Thank you very much for such an amazing tutorial
Your way of presenting information is great.
Proper tempo, easy to listen, i don't have to speed up playback and I am not bored quickly - just perfect
Thank you
Nana is setting the bar for terrific tutorials; packing so much content in these videos. Very nice. Thank you Nana.
Thanks so much Taylor! :)
#eazzylearninglab
I didn't knew kubernetes was this easy. Can't thank you enough for creating such easy to follow videos. 💯
Thank you for doing a great service for us learners.
Lord have mercy, here is the Queen of Kubernetes in Action. Kube's made simples, watch and learn boys and girls :) WOW!!!
Oookay
This is an amazing course. Fast paced, detailed and very well thought through. Nana is an expert with great communication.
Absolutely stunning explanation. Extremely thorough. Highly recommended!