This whole series covering docker and kubernetes is excellent, precise and easy to understand. Congratulations and thanks for your efforts. You have great teaching abilities. I specifically liked videos that cover practical aspects - for example, application deployment using k8s and docker-compose etc. Keep up your excellent work.
Jeez, as part of a dev team who’s currently struggling with devops issues cause our affiliate company that’s supposed to host our apps are completely useless and unresponsive of our requests, your vids really make my life better ! Thanks !
Kubernetes Operator explained (manager for your stateful application 🚀) ► ruclips.net/video/ha3LjlD6g7g/видео.html Using StatefulSet in practice 🙅🏼♀️ ► ruclips.net/video/JGtJj_nAA2s/видео.html ▬▬▬▬▬▬ T I M E S T A M P S 0:00 - Intro 0:07 - What is StatefulSet? Difference of stateless and stateful applications 1:57 - Deployment of stateful and stateless applications 3:42 - Deployment vs StatefulSet 5:40 - Pod Identity 6:14 - Scaling database applications: Master and Slave Pods 10:15 - Pod state 11:40 - Pod Identifier 13:17 - 2 Pod endpoints 14:27 - Final note - replicating stateful apps 15:26 - What we covered and what to learn next 👉🏼 For any questions/issues/feedback, please leave me a comment and I will get back to you as soon as possible. 👉🏼 Also please let me know what you want to learn about DevOps. Please don't forget to subscribe and give me a thumbs up if you liked my video 🤓
Such an awesome explanation. I, being a devops engineer myself found this very useful. Thanks for a lot of hardwork that you're doing behind these videos to present to audience like me.
Congratulations for you job Nana! I've been learning about Kubernetes since few months ago and your channel is one of the best about this topic! I wish you continue growing and creating very good contents to youtube!
Hey..!!! You know what.....You deserve a big applause...!!! U covered almost everything abt Statefulset in this short video in detail..Can't resist watching your next video..Cheers...:)
Maybe it is really important to mention that: 1. Know the database (if you are going to deploy database in K8s). Not all works the same way. For example, sharding as concept (found in Elastic) is very important. 2. Know your application requirements. Where is not possible to have stateless application, state-full self-contained application (deployed as StatefulSet) might make sense.
Hi Nana, I started to follow your videos from 2dys back, all them are crystal clear to understand. Am preparing for an interview now so need detailed video about pod security policy. Cheers !!
Thank you for all the videos Nana. Really your videos are much better than any other videos in you tube or even paid ones. Really everytime i wait for your videos when you are going to upload on K8s :) Thanks again for the videos
Thanks for this great overview of StatefulSet.Must interesting was the claim that sateful applications are not perfect for containerised environments. This is a very important information if you start learning containerisation.
Thank you so much Raman! 🙏🙂 Hope it will gain more attention soon from youtube, so that it will be suggested to people who are interested in k8s. I would also be thankful for any support by liking and sharing to people, who want to learn about Docker & K8s :)
She is a kubernetes wizard who has passion in sharing content. Who is doing a backup of this girl? :) thanks Ana for spending time preparing a high quality material.
Nana, thanks a bunch for such an awesome tutorial/explanation. This has cleared many of my concepts. Before this, I was thinking to have a single Volume for all the Stateful app replicas. Really appreciated your work... :)
Amazing explaination. Thank you so much for you. please make and upload videos on how to implement the statefulsets and how it configuration file looks like and how the master and slave methodology for databases was implemented in statefulsets. I have lot of questions in this area only.please make and upload videos on my above requests.
You are amazing¡¡ you don't know how much I've learned thanks to you¡¡ You have the ideas super clear and the resources are the best. Thank you so much¡¡
Thank you so much Nana , you're videos are excellent ! All your series on Kubernetes are like this ! You succeed to explain main concepts in a easy way and it's not so easy to do ! 👏👏👏
So easily explained and with great clarity. You are a GEM 💎and a great inspiration. The animations are something that makes you very different and special. Thanks a lot Mrs.Nana for taking the pain to put those efforts in. Highly appreciated.👏👏👏👌👌👌
Thanks a lot for this video it really helped me to understand the purpose of the Statefulset and I can say that it is a really nice feature that k8s propose. As I started to learn about k8s, it's a good learning step done today after watching this video.
@TechWorld with Nana there is probably a issue in description on 13:38. The service has name "svc1" but the pods dns names have `${pod_name}.svc2` rather `.svc1`
Hello Mam, A very well-explained concept for stateful sets. The most important part comes at the end that, the containerization platform is not suitable for stateful apps. Kudos to your explanation power. Keep posting such videos. 👍
Here, I have learned a lot of things for Kubernetes. Thanks for doing these tutorials. Can you please make a video for MySQL Master and Slave Concept?.
Great channel!!! Great content. Thank you so much Nana. Been looking for the “How to create a StatefulSet” video but I haven’t seen it. Can anyone direct me.
Fantastic video, thank you! What happens in this scenario: a stateful application continually receives requests to update a database (e.g. MySQL) that is hosted on the k8s cluster as a StatefulSet. What happens in the time between Master pod failure and spinning up a new Master pod? Are the update database requests buffered until a new Master pod is available that can write the updates to the DB?
Very crisp Video, covering lots of information! - One question, If the Master statefulset Pod dies, then who would(i.e. which slave) get the write power to the DB (i.e. persistent volume), and to which DB it shall write?
Excellent explaination.I had a small doubt If i understand correctly, for stateless applications ,all replica's of pods will use single pv. how all pods deployed on different nodes will be able to access single pv(AWS-EBS) case of stateless applications? .ebs is not allowed to share to multiple nodes
She failed to explain the gist of stateful sets by focusing too much on the example. The storage is NOT replicated on its own, but in the case of a distributed MySQL database the slaves communicate with the master to obtain a copy of the data. The storage replication is part of the "application" itself, not the StatefulSet logic. The role of StatefulSets, among other things, is to ensure that pods are created in a particular order (changeable by a policy), help us configure a headless service allowing us to communicate with individual pods by creating DNS entries, and ensuring that each pod can request its own STORAGE by providing a PVC template as part of the StatefulSet. So good call on your part, Kubernetes does NOT take care of storage replication.
I strongly agree with that so many others have said. You have created an excellent series on Kubernetes. Thank you very much. Do have plans to add a video about DaemonSet?
Great video!! What if the last pod went down due to node failure than how will the new pod clonned and how this works in multi AZ in AKS? Also how db sharding would work in case of DB in K8S cluster
Stumbled on to this channel today, never found any better. Thanks a lot creator.
Thank you, I really appreciate your comment!
@@TechWorldwithNana
ВБЫДВДВД
All doubts cleared… you rocked nana😊
I wish i could have seen this vidios 1 year before. To explain complex thing in a simple way you don't have to Genius . Fantatic and Superb effort.
This whole series covering docker and kubernetes is excellent, precise and easy to understand. Congratulations and thanks for your efforts. You have great teaching abilities. I specifically liked videos that cover practical aspects - for example, application deployment using k8s and docker-compose etc. Keep up your excellent work.
Thank you so much Rahul for your feedback! 🙏 Happy that it was so useful to you!
Thanks for giving an clear explanation and using slides and not whiteboard scribbles.
Jeez, as part of a dev team who’s currently struggling with devops issues cause our affiliate company that’s supposed to host our apps are completely useless and unresponsive of our requests, your vids really make my life better ! Thanks !
Just started with one video and can't stop till I watch all of them, crystal clear. Looking forward to many more, Thanks!
Thank you Sivakanth. I hope you won't get tired of supporting the channel. Keep safe and blessed. 😇
Kubernetes Operator explained (manager for your stateful application 🚀) ► ruclips.net/video/ha3LjlD6g7g/видео.html
Using StatefulSet in practice 🙅🏼♀️ ► ruclips.net/video/JGtJj_nAA2s/видео.html
▬▬▬▬▬▬ T I M E S T A M P S
0:00 - Intro
0:07 - What is StatefulSet? Difference of stateless and stateful applications
1:57 - Deployment of stateful and stateless applications
3:42 - Deployment vs StatefulSet
5:40 - Pod Identity
6:14 - Scaling database applications: Master and Slave Pods
10:15 - Pod state
11:40 - Pod Identifier
13:17 - 2 Pod endpoints
14:27 - Final note - replicating stateful apps
15:26 - What we covered and what to learn next
👉🏼 For any questions/issues/feedback, please leave me a comment and I will get back to you as soon as possible.
👉🏼 Also please let me know what you want to learn about DevOps.
Please don't forget to subscribe and give me a thumbs up if you liked my video 🤓
Ansible
Mind blowing explanation of each topic which I have learn for K8s... Thanks a lot Nana & love❤️ from India 🇮🇳🇮🇳
Such an awesome explanation. I, being a devops engineer myself found this very useful. Thanks for a lot of hardwork that you're doing behind these videos to present to audience like me.
Congratulations for you job Nana!
I've been learning about Kubernetes since few months ago and your channel is one of the best about this topic!
I wish you continue growing and creating very good contents to youtube!
Thanks, I'm glad you think so! Do my best to deliver quality content for you 💪🏼
Thanks for such simple explanation. Great job Nana...
Hey..!!! You know what.....You deserve a big applause...!!! U covered almost everything abt Statefulset in this short video in detail..Can't resist watching your next video..Cheers...:)
Thank you so much!! That's so great to hear 😊
Maybe it is really important to mention that:
1. Know the database (if you are going to deploy database in K8s). Not all works the same way. For example, sharding as concept (found in Elastic) is very important.
2. Know your application requirements. Where is not possible to have stateless application, state-full self-contained application (deployed as StatefulSet) might make sense.
Totally impressed with the delivery of concept!!! Thank you!!
Perfectly explained high level concepts . Can completely now relate to all the connected components and able to visualise entire structure .
Thanks, that's awesome, glad that my video helped you in getting a big picture 👍
Very well explained in simple way. Best video.
best development /devops youtube channel ever, great content by Nana!
I appreciate your efforts in explaining these concepts in your videos. Thanks for everything you do Nana, 1m subs in a bit.
Hi Nana, I started to follow your videos from 2dys back, all them are crystal clear to understand. Am preparing for an interview now so need detailed video about pod security policy.
Cheers !!
best channel for kubernetes
thanks
u are doing a gr8 job with the presentations. it is a lot of effort to make powerpoints for every video and all the notes. thank you.
Thank you for all the videos Nana. Really your videos are much better than any other videos in you tube or even paid ones. Really everytime i wait for your videos when you are going to upload on K8s :) Thanks again for the videos
That's so sweet of you Nagaraj. I try my best to make things clear as possible. I'm happy that you see it that way. Thank you so much. 😇
awesome amazing tutorial very detailed explanation. One of the best channel in youtube. your work behind the presentation is simply awesome
Thank you, that's very sweet to say. Much appreciated. 😇
That was a really really nice explanation that I could not even find from the Kube documents. thanks
Thanks for this great overview of StatefulSet.Must interesting was the claim that sateful applications are not perfect for containerised environments. This is a very important information if you start learning containerisation.
Such a clear and detailed explanation in so short period of time. Awesome👍
Thanks Pravata, happy you liked my video! :)
Very very neat and simplified explanation! Awesome contents, Nana!
Exaclty what I was looking for - very simple and precise explanation.Thanks alot.
Thanks TechWorld Team!
Amazing explanation, Understood the concepts of the Stateful set after a few months
You're welcome Ajay. Wishing you all the best in your profession. 😇
The best kuberneres lecturer
Wow! Real good content. This channel is indeed underrated.
Thank you so much Raman! 🙏🙂 Hope it will gain more attention soon from youtube, so that it will be suggested to people who are interested in k8s. I would also be thankful for any support by liking and sharing to people, who want to learn about Docker & K8s :)
@@TechWorldwithNana Hello Nana, I've been sharing your videos with my team. We find them better than, let's say udemy. Thank you for posting.
@@RamanKathpalia 🙂 thanks
She is a kubernetes wizard who has passion in sharing content. Who is doing a backup of this girl? :) thanks Ana for spending time preparing a high quality material.
Thank you Renato :) Appreciate your comment!
Nana, thanks a bunch for such an awesome tutorial/explanation. This has cleared many of my concepts. Before this, I was thinking to have a single Volume for all the Stateful app replicas.
Really appreciated your work... :)
Thanks lot to nana. I appreciate and have pleasure to follow all your contents. So if I create a same pv for all replicas what's the inconvenient?
Amazing explaination. Thank you so much for you. please make and upload videos on how to implement the statefulsets and how it configuration file looks like and how the master and slave methodology for databases was implemented in statefulsets. I have lot of questions in this area only.please make and upload videos on my above requests.
Thanks Mohammed! As mentioned in the video I will make a more practical video about StatefulSets
You are amazing¡¡ you don't know how much I've learned thanks to you¡¡ You have the ideas super clear and the resources are the best. Thank you so much¡¡
Great Job ! Explained very clearly. Waiting for the next video on StatefulSet configuration file. Thank u..
You're welcome Bapi. 😇
Wow. So much work and detailing in explaining things. Thanks for this. Very helpful.
Thank you very much! You are an excellent teacher!
Very clear nd nicely explained.. thanks for your efforts🙏
Thanks a ton .... These videos are super helpful... Please keep on making videos..
Thanks, will keep creating quality videos 💪🏼🤗
You're the best! Subscribed
Thank you so much Nana , you're videos are excellent ! All your series on Kubernetes are like this ! You succeed to explain main concepts in a easy way and it's not so easy to do ! 👏👏👏
Great video. One point I am messing is about how the service share the request to the pods ?
Watched All Of Urs Videos.Great Explanation. HatsOff.
Got it, the different between deployment and statefulset. thanks
Nice Video with good explanation!
Keep doing good work, Nana! Loved this!
So easily explained and with great clarity. You are a GEM 💎and a great inspiration. The animations are something that makes you very different and special. Thanks a lot Mrs.Nana for taking the pain to put those efforts in. Highly appreciated.👏👏👏👌👌👌
Thank you so much Anil 🙂 I'm happy to hear such positive feedback!
Completely comprehensive and useful. thank you.
Great Job. excellently explained. you're a gem
Thanks a lot!
You have answers for my each question, as a video! Thank you...Subscribed!!!
Easy to understand and very detailed information. Thanks!
Hey nana, this video was awesome, greetings from Argentina!.
Thanks a lot for this video it really helped me to understand the purpose of the Statefulset and I can say that it is a really nice feature that k8s propose.
As I started to learn about k8s, it's a good learning step done today after watching this video.
thanks for such easy explanation. keep it up 👍
Hi Mayuresh, glad my explanation was helpful and easy to follow :)
Excellent video. Thanks for helping us understanding the topic.
Thank you very much, finally able to understand what I was looking for..
Amazing explanation, thank you so much for posting this video!
very comprehensive video and great slides
@TechWorld with Nana there is probably a issue in description on 13:38. The service has name "svc1" but the pods dns names have `${pod_name}.svc2` rather `.svc1`
Thanks for the efforts. Nicely and crisply explained.
Thank you for the amazing explanation!
Brilliant and just wonderful waiting for next video
Thanks a lot! Next video coming soon :)
Hello Mam,
A very well-explained concept for stateful sets. The most important part comes at the end that, the containerization platform is not suitable for stateful apps. Kudos to your explanation power. Keep posting such videos. 👍
Here, I have learned a lot of things for Kubernetes. Thanks for doing these tutorials. Can you please make a video for MySQL Master and Slave Concept?.
Simply magistrally explained and with outstanding infography. Thank you very much indeed. Cannot wait to watch the rest of the series. Subscribed!
Thank you Cascossi. Much appreciated. 😇
Hi Nana! Great topic and explanation! Thank Youuuu!
You're welcome Mauricio, glad you liked it :)
Thank you!! you made it super easy to understand the concept, subscribed :)
awesome explanations, thanks for this, I'm learning so much from you 🙏
As usual, very nice content, Nana! Thank you so much for this excellent video. You have explained it very well.
Thank you 🙏
excellent Lectures, Very useful ! thank you
I got to say only one word: Great!
Thank you 🙏🙂
Very well explained.. Thanks
Thank you Farrukh. Please don't forget to subscribe and share. 😇
I like the presentation Animation
awesome video
Great channel!!! Great content. Thank you so much Nana. Been looking for the “How to create a StatefulSet” video but I haven’t seen it. Can anyone direct me.
Fantastic video, thank you! What happens in this scenario: a stateful application continually receives requests to update a database (e.g. MySQL) that is hosted on the k8s cluster as a StatefulSet. What happens in the time between Master pod failure and spinning up a new Master pod? Are the update database requests buffered until a new Master pod is available that can write the updates to the DB?
Good overview use case of StatefulSets ! 👍🏽
Very crisp Video, covering lots of information! - One question, If the Master statefulset Pod dies, then who would(i.e. which slave) get the write power to the DB (i.e. persistent volume), and to which DB it shall write?
Thanks for the good video.
How can we upgrade Statefulset pods without traffic disturbance, like how to handle switchover b/w PRIMARY and SECONDARY?
awsome video so many things learning from this.
Excellent explaination.I had a small doubt
If i understand correctly, for stateless applications ,all replica's of pods will use single pv. how all pods deployed on different nodes will be able to access single pv(AWS-EBS) case of stateless applications? .ebs is not allowed to share to multiple nodes
Very Well Explained
very helpful. Thank you and keep making these short videos :)
Hi Raghu, I will :)
nicely explained as always, thanks.
Thanks, glad you think so! :)
Can you refer me a trustable source where you have seen pods part of statefulset replicates their STORAGE to next pod in the same statefulset?
She failed to explain the gist of stateful sets by focusing too much on the example. The storage is NOT replicated on its own, but in the case of a distributed MySQL database the slaves communicate with the master to obtain a copy of the data. The storage replication is part of the "application" itself, not the StatefulSet logic. The role of StatefulSets, among other things, is to ensure that pods are created in a particular order (changeable by a policy), help us configure a headless service allowing us to communicate with individual pods by creating DNS entries, and ensuring that each pod can request its own STORAGE by providing a PVC template as part of the StatefulSet. So good call on your part, Kubernetes does NOT take care of storage replication.
@@Clarifier-hv5cl You are right. Your explonation was so clear. Storage replication has to be handled by application itself.
Good job!!!. Excellent work!!!
I strongly agree with that so many others have said. You have created an excellent series on Kubernetes. Thank you very much. Do have plans to add a video about DaemonSet?
Great video!! What if the last pod went down due to node failure than how will the new pod clonned and how this works in multi AZ in AKS? Also how db sharding would work in case of DB in K8S cluster
Enjoying your video's .. Could you please make a video on RBAC and security concept.. Thanks !!
You're welcome John. Will consider your suggestion. 😊
Thanks, perfect explained.
Thank you Tom, glad you liked my way of explaining!
Nice one ! clear explanation.
Thank you. This is really helpful
muy claro, muchas gracias!
De nada Juan 😇
great explanation many thanks ...
as always, very good explicacoines. Thank you
You are the best!
Superb!!
Great Explanations
Wow thanks for sharing such a great video here!!!
Great work Nana!!