Kubernetes Volumes explained | Persistent Volume, Persistent Volume Claim & Storage Class

  Переглядів 344,749

TechWorld with Nana

TechWorld with Nana

День тому

Kubernetes Volumes | Kubernetes Persistent Volumes | Kubernetes Volume Claim | Kubernetes Volume Tutorial
► Subscribe To Me On UKposts: bit.ly/2z5rvTV
Kubernetes doesn't provide data persistence out of the box, which means when a pod is re-created, the data is gone.
So, you need to create and configure the actual physical storage and manage it by yourself. Once configured, you can use that physical storage using Kubernetes storage components. In this video I show you 3 different Kubernetes volume components, that you need to use to connect the actual physical storage to your pod, so that the application inside the container can access it.
The 1st component "Persistent Volume" is a cluster resource, like CPU or RAM, which is created and provisioned by administrators. The 2nd component "Persistent Volume Claim" on the other hand is a user's or pod's request for a persistent volume. With the 3rd component "Storage Class" you can dynamically provision Persistent Volume component and so automate the storage provisioning process.
► Reference to YAML Configs: gitlab.com/nanuchi/kubernetes...
► Volume Types: kubernetes.io/docs/concepts/s...
► Checkout Kubernetes Volumes Demo: • Kubernetes ConfigMap a...
▬▬▬▬▬▬ T I M E S T A M P S
0:00 - Intro
0:20 - The need for persistent storage & storage requirements
2:05 - Persistent Volume (PV)
6:33 - Local vs Remote Volume Types
7:38 - Who creates the PV and when? (Kubernetes Administrator and Kubernetes User Role)
9:03 - Persistent Volume Claim (PVC)
10:33 - Levels of volume abstractions
12:17 - Why are these abstractions good?
13:40 - ConfigMap and Secret as volume types
15:52 - Multiple and different volume types in 1 pod
17:12 - Storage Class (SC)
-------------------------------------------------------------------------------------------------------
Full Kubernetes and Docker tutorial ► bit.ly/2YGeRp9
DevOps Tools, like Ansible ► bit.ly/2W9UEq6
Complete K8s Application Setup ► • Complete Application D...
Complete Jenkins Pipeline Tutorial ► • Complete Jenkins Pipel...
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 Docker & Kubernetes or another technology.
#kubernetesvolumes #kubernetes #kubernetestutorial #devops #techworldwithnana
-------------------------------------------------------------------------------------------------------
▬▬▬▬▬▬ Connect with me 👋 ▬▬▬▬▬▬
Join private Facebook group ► bit.ly/32UVSZP
Don't forget to subscribe ► bit.ly/3mO4jxT
DEV ► bit.ly/3h2fqiO
INSTAGRAM ► bit.ly/2F3LXYJ
TWITTER ► bit.ly/3i54PUB
LINKEDIN ► bit.ly/3hWOLVT
▬▬▬▬▬▬ Courses & Bootcamp & Ebooks 🚀 ▬▬▬▬▬▬
► Become a DevOps Engineer - full educational program 👉🏼 bit.ly/45mXaer
► High-Quality and Hands-On Courses 👉🏼 bit.ly/3BNS8Kv
► Kubernetes 101 - compact and easy-to-read ebook bundle 👉🏼 bit.ly/3Ozl28x
Legal Notice:
Kubernetes and the Kubernetes logo are trademarks or registered trademarks of The Linux Foundation in the United States and/or other countries. The Linux Foundation and other parties may also have trademark rights in other terms used herein. This video is not accredited, certified, affiliated with, nor endorsed by Kubernetes or The Linux Foundation.

КОМЕНТАРІ: 353
@TechWorldwithNana
@TechWorldwithNana 4 роки тому
► Reference to YAML Configs: gitlab.com/nanuchi/kubernetes-tutorial-series-youtube/-/tree/master/kubernetes-volumes ▬▬▬▬▬▬ T I M E S T A M P S 0:20 - The need for persistent storage & storage requirements 2:05 - Persistent Volume (PV) 6:33 - Local vs Remote Volume Types 7:38 - Who creates the PV and when? (Kubernetes Administrator and Kubernetes User Role) 9:03 - Persistent Volume Claim (PVC) 10:33 - Levels of volume abstractions 12:17 - Why are these abstractions good? 13:40 - ConfigMap and Secret as volume types 15:52 - Multiple and different volume types in 1 pod 17:12 - Storage Class (SC)
@ernavneetkverma
@ernavneetkverma 3 роки тому
Hey, First of all thanks for these great videos. I have a question for what you explained around 10:29 minutes wherein you mentioned the connection between a PVC config and the Pod config wherein the PVC is being referred to. I found one point missing here. How is the PVC config you showed is connected to the PV. Is it that when the storageClassName attribute is defined as "manual" the PVC is considered to be claiming it's backed storage from a PV ? Because later on in the video when you explain how a PVC is connected to a SC you clarified that the storageClassName is set to the name of the Storage Class. Appreciate if you could clarify this part or if I am missing something here. Thanks!
@ernavneetkverma
@ernavneetkverma 3 роки тому
Alright, so I might be answering myself on the above question and also for those who might be having the same question when going through this video. As per the documentation (kubernetes.io/docs/tasks/configure-pod-container/configure-persistent-volume-storage/) it does appear that the storageClassName needs to be defined even when a PVC wants a claim from a PV instead of a SC, and the value of the storageClassName needs to be "manual". Hopefully I understood it right now.
@ernavneetkverma
@ernavneetkverma 3 роки тому
Also when at time 20:11 you mention that we add additional attribute named storageClassName in the PVC, it actually is not an additional attribute per what I wrote above but instead a name which is not the string "manual".
@sajeevaraju908
@sajeevaraju908 Рік тому
@TechWorld with Nana Is that possible? To mount a PVC volume in a Linux VM, Because I need to share the same common storage volume for both VM and pod.
@daniellin3784
@daniellin3784 3 роки тому
Whenever I have blind spot of Kubernetes, I search through this channel. And it never let me down.
@HrittikExplains
@HrittikExplains 2 роки тому
I agree!!!
@mostinho7
@mostinho7 3 роки тому
Done thanks Types of volumes: 1. Persistent volumes 2. Persistent volume claim 3. Storage class When a pod is restarted, storage is deleted. Data persistence needs to be configured for applications that need storage between pod restarts. But you don’t know which node your pod will be restarted on, so the storage must be accessible from all nodes. Storage also needs to survive entire k8s cluster crashes/restarts Persistent volume is a kubernetes resource (like RAM), gets created using yml file 2:30 The actual storage of the volume is taken from either local storage, external nfs servers, cloud storage 4:30 defining which storage backend to use for a PersistentVolume Local storage has a nodeAffinity attribute PersistentVolumes dont belong to a namespace, accessible to whole cluster 7:15 local vs remote volume types, but local volumes are not really persistent. They are specific to one node, and do not survive a cluster crash Persistent volume objects should be created before the pods that depend on them 9:30 A persistent volume claim is a k8s object used by applications to claim the persistent volume 10:20 persistent volume claim is then used in the pod specification under the volumes: attribute While persistent volumes are available in all namespaces, persistent volume claim must be in the same namespace as the pod using it 11:30 volume is mounted into the pod and also into the container in the pod that wants to use it 13:45 configmap and secret volume types 17:15 storage class
@sathishdarshanala6137
@sathishdarshanala6137 2 роки тому
thanks
@qwazzmotto6045
@qwazzmotto6045 Рік тому
Being a Dyslexic and a visual person, these video's are invaluable to me. It would take 10 times longer to learn this if I had to actually read the manual from start to end. Thank you so much for doing this, it mean more to me then you will know.
@DazRomance
@DazRomance 3 роки тому
This is the second time I get to warch one of your k8s subject explanations and I am very impressed. The structure of the explanation is very well made. It always seem to build all the necessary "conceptual blocks" in advance and then creates a big picture out of it. How often have I read or watched tutorials that were just missing one or two crucial bits of info to make things truly clear ? Your work nails all these details every time, amazing ! It may not be how every one likes things being explained to them, but it really does it for me. Congrats and keep up the great work !
@servidortnlog2574
@servidortnlog2574 2 роки тому
It's just amazing how you're able to explain everything that i need to know about this subject so well. Thank you so much, congrats for the great content
@sylvia-liu
@sylvia-liu 2 роки тому
Thank you, Nana!! Your videos have helped me a lot in learning k8s. I keep watching these videos over and over again and it gradually makes sense when using them on my job.
@colinrickels201
@colinrickels201 2 роки тому
Once again, youve taken a concept that I have been struggling with and entirely cleared it up. Not just that though, you've provided a visual representation that will stick around every time i approach this topic. If only kubernetes made such visual effort in their docs.
@prasadpvsv5165
@prasadpvsv5165 Рік тому
Your a great trainer , never explained this much deeper on PV , PVC , and storage class
@anirbandutta1371
@anirbandutta1371 Рік тому
This was one of the best 20 mins I have ever spent learning something. Very clear explanation with visuals. Thanks :)
@quangtungluu8011
@quangtungluu8011 2 роки тому
This video is so great. Your explanation is totally on the point. The hard part is understanding the relationship among these components and having a general view of what they do, when to use and why we need them, your job is excellent in doing so.
@anbesh7
@anbesh7 Рік тому
Pv, pvc and storage class never seen any where explained this much neat and clearly 10000 thanks to nana…keep taught us
@niharikasingh6362
@niharikasingh6362 6 місяців тому
love all the simple explanation! Your videos and courses are a bliss to watch !! Never stop creating them. We all need you Nana :)
@santalucifer1169
@santalucifer1169 2 роки тому
Freshly joined a team working on a project with k8s and found this channel greatly deciphers the mysterious YAMLs in the codebase!
@siddhartharana7957
@siddhartharana7957 Рік тому
searching on this channel for devops content >> searching on entire yt. Thanks a lot for your efforts!!
@MikeStock88
@MikeStock88 3 роки тому
Always come here when I don't understand something and always come away with what I need Fantastic channel :)
@shk234
@shk234 3 роки тому
You describe complex things amazingly well, thankyou
@rashiddar7450
@rashiddar7450 3 роки тому
Excellent Nana, You just saved my day, I was struggling with PVC and storage class.
@DiegoMorandiniDMM
@DiegoMorandiniDMM 2 роки тому
Great job, Nana! Finally I could understand persistent volumes. Thank you.
@leonardocalcagno5031
@leonardocalcagno5031 3 роки тому
Nana, you are the best teacher for devops and cloud engineer in youtube! Thanks so much!
@user-nk7bs2ky9s
@user-nk7bs2ky9s 8 місяців тому
I would like to thank you for this amazing explanation.
@lossurdo
@lossurdo 8 місяців тому
Best explanation! Thanks from Brazil 🇧🇷 !!!
@henrykeke5278
@henrykeke5278 2 роки тому
Ohh Nana, you are fantabulous. Your videos are so segmented to hit the tiniest details. Great work!. All my IT goons must follow you ASAP!
@jyotitumsare2070
@jyotitumsare2070 3 роки тому
This is Best K8s series I have seen . Thank you nana !! Please keep updating k8s object creation tutorial.
@sunils5834
@sunils5834 3 роки тому
one of the best videos ever. helped me to understand the concepts efficiently. Thank you for sharing!!
@nisithpanda7506
@nisithpanda7506 2 роки тому
You are a savior!!!. Eagerly waiting for the practical demo sessions in Volumes
@casimirrex
@casimirrex 3 роки тому
This is really wonderful and usefull session for us. Because i have gone through more videos, I did not understand, , I an very clear PV,PVC ,Storage, ConfigMap and secrets.With in 20 mins i got entire conepts about Storage compoents in K8s.
@badandboujeee
@badandboujeee 2 роки тому
Really well done. This has been a slippery concept for me for a while, but this was well-articulated.
@satyam_sundaram
@satyam_sundaram 9 місяців тому
Excellent explanation!
@85bmst26
@85bmst26 3 роки тому
Thank you!! Your videos are clear, accurate, concise, and just great. They have helped me learn K8S in a very short time.
@janusztarnowski115
@janusztarnowski115 Рік тому
and maybe you will like it? ukposts.info/have/v-deo/sJSenaCgpaicjqs.html
@vyacheslavzlobin732
@vyacheslavzlobin732 2 роки тому
You are the best, of them easy to understand and precise information that other tutors were not able to deliver!
@TheS0meguy
@TheS0meguy 3 роки тому
Insanely good straight-to-the-point explanation on how storage works on K8s; also the description containing the timestamps and all the other information is about 👌 Already subscribed, I’ll make sure to share this goodness :)
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
Thank you so much Martin for such great feedback! Appreciate your comment 😊
@srahul842002
@srahul842002 3 роки тому
Fantastic, the way you explain in such a simple way is really helping a lot to understand each topic completely. And sharing such a well created video free is really the best thing happened for k8s professionals like us.
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
Thank you so much Rahul for your positive feedback 😊
@marwanghubein7879
@marwanghubein7879 3 роки тому
this video is one of my favorite, volume explained in a vgood way, Thanks a lot , I keep watching it every time I need to do something with volumes
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
Really happy to hear! Appreciate your words 😊
@kpsaggi25
@kpsaggi25 3 роки тому
A really detailed and clear way of explaining the concepts. Thank you for spreading the knowledge through your videos.
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
Thank you! Appreciate your positive feedback 😊
@turux
@turux 3 роки тому
What a great video! Thanks! You're clear, concise and effective!
@SERV007
@SERV007 4 роки тому
Great video! Data management is probably the biggest challenge in microservice driven architectures which are often implemented in k8s infrastructures. Volumes remaining "synched" with the orchestrator scheduler specially for DBs seems like a tabu for many instructors out there while in this video your just "grab the bull by its horns". Looking forward for those demos thank you.
@TechWorldwithNana
@TechWorldwithNana 4 роки тому
Thank you so much 🙏Really appreciate it. You're absolutely right. Persistence with containers, is a challenging topic. I have discussed with some k8s engineers that have said they refuse to deploy any stateful application in k8s cluster. So what they do is create Deployments in k8s and host Databases outside the cluster the traditional way. I think there are advantages and disadvantages for both cases. I will try to cover these in the demo videos. Thanks again for your comment!
@surekhadani8487
@surekhadani8487 6 місяців тому
LOVED IT !! what a wonderful explanation of PV, PVC and storage class !!
@TerminalFIN
@TerminalFIN 3 роки тому
Thank you so much for sharing this! I am diving into the wonderful world of containers and container orchestration right now and this is helping out tremendously. Did you happen to produce the other videos for storage yet, specifically NFS? I looked through your list of videos and didn't see them. Either way, thanks again and I plan to go through your 3 and 4-hour courses over the next few days.
@MaheshSankhala
@MaheshSankhala 3 роки тому
Thanks Nana for such a beautiful explanation of Volumes in K8.
@huzaifavakil7352
@huzaifavakil7352 Рік тому
Thank you so much .. Cleared my concepts on pv,pvc and storage class
@hemilpatel925
@hemilpatel925 3 роки тому
Simple, fantastic, and up to the point. Thank you
@johnellwood8872
@johnellwood8872 3 роки тому
Excellent video, thanks Nana - you explain how and for me, most importantly why there are so many abstraction layers/object types for k8s storage.
@blaiseutube
@blaiseutube 6 місяців тому
IMHO, Nana's explanations and her familiarity with the relationships between the parts in k8s are the best. --- Disclosure: I worked at Google for five years and I have been hanging out in the k8s community since 2016.
@d009
@d009 3 роки тому
You are really amazing! Thank you so much for the detailed explanations.
@Amithansda
@Amithansda 3 роки тому
Very helpful video, When it comes to persistence basic Kubernetes videos do not cover it. But somehow this video summarised all the required information perfectly. And the YAML files you have provided are just great. Looking forward to more videos.
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
Thank you so much Amit for your feedback. Happy to hear 🤗
@TheRedDaren
@TheRedDaren 3 роки тому
Loved the sleek diagrams and animations. Even better explanation to top it off. Thanks.
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
Thanks, happy to hear you liked it :D
@mouadbichouarine3932
@mouadbichouarine3932 3 роки тому
Brilliant! Best Kubernets tutorials so far. Thanks :)
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
Thanks a ton Mouad, happy to hear! :) Please share and subscribe 🙏
@vempasiddhartha
@vempasiddhartha 3 роки тому
Very much impressed Nana with your explanation. I sincerely request you to make more and more videos on k8s covering all of its topics along with real time use cases by showing their practical implementation right from scratch.
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
Thanks Vempa! Glad you like it, will make many more videos on K8s but will take time to do so :)
@user-xp2rz4ff6y
@user-xp2rz4ff6y 2 роки тому
좋은 영상 감사합니다~! 개념이해에 항상 도움이 됩니다
@harshavmb
@harshavmb 3 роки тому
Very well presented! I was scratching my head on how to put my ELK cluster currently running on VMs into my newly built Kubernetes cluster. This video really is a good start. Vielen Dank :-)
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
Thank you 🙂
@masrur_qr
@masrur_qr 8 місяців тому
No one explained it better than you.❤❤❤❤❤❤
@Sami-bc9iv
@Sami-bc9iv 3 роки тому
good job. Actually - Amazing. Thank you. As a previous reviewer said: it helped me gain an intuitive sense of volumes!!!
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
Thank you 😊
@robertscott5535
@robertscott5535 2 роки тому
Rockstar Alert!!! You killed it! Thank you for making the content clear and concise!
@omolluska
@omolluska 3 роки тому
I wonder who the 16 people are who gave a thumbs down. I really appreciate you spending so much time in creating this video!! If you do make a different video for the different volume mount types, please please add a link in the description, so that we can go ahead and watch that as well.
@nalcow
@nalcow Рік тому
Nana, these lectures are pure gold, thanks again.
@virabadrasana
@virabadrasana Рік тому
One of the best series of presentations on Kubernetes on the net. Great clarity and depth. Very much appreciated, thank you!
@sowmiyaragu7837
@sowmiyaragu7837 2 роки тому
Perfectly understood in the first shot itself , Thank you Nana :)
@ujjwalrastogi9100
@ujjwalrastogi9100 3 роки тому
Nana thanks for every single video's which you have posted, i went through them and in last 3 days my concepts regarding K8s and docker got improved. :)
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
Thank you so much! Really happy to hear my videos are so helpful! 😊
@9391245827
@9391245827 3 роки тому
Your videos are really helpful
@CoffeeandBarbell
@CoffeeandBarbell 2 роки тому
Nana.. thank you for all the great work you are doing. You always inspire me to skill up. Thank you and a lot of love & respect from India.
@UltimateKeyboardHero
@UltimateKeyboardHero 2 роки тому
This video is awesome, and I understood a lot more about pv pvc and sc. Now I have a little map in my head, but I still need a lot more knowledge on this topic. Like the cloud provider I'm using doesn't have a sc provisioner. And I've been trying to bind the pod to a manually created volume for 3 days now. xD
@icherif_gn
@icherif_gn 3 роки тому
Well Done 👍🏽 ... You explained things in this video clearly ... I’ll be checking out more of your videos going forward
@jonassteinberg3779
@jonassteinberg3779 2 роки тому
Very nice high-level overview of a somewhat complicated topic 🙏
@neilxpeart
@neilxpeart 3 роки тому
Thank you so much for this video, it's helped me gain an intuitive sense of volumes.
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
That's great Daniel! I'm glad I could help you in understanding volumes more :)
@mohanvoleti
@mohanvoleti 2 роки тому
It gives me details at very high level which is important to me in every aspect
@ganeshmane6062
@ganeshmane6062 2 роки тому
Thank you for such a wonderful explanation. Short and sweet.
@nicoemi
@nicoemi 3 роки тому
Awesome explanation Nana, loved it! Can't wait to see the demo of this topic. Thanks a lot!
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
Thanks Nicolas 🙂 In my last video (ukposts.info/have/v-deo/gnelfqCWpXdyk6c.html) you can see small part of the volumes in practice, namely: dynamically creating volumes on a cloud storage using storageClass. Hope this will be interesting for you
@abhinavkozza
@abhinavkozza Рік тому
I have only one thing to say... "God bless you!"
@vamshikrishnatirunagari9421
@vamshikrishnatirunagari9421 3 роки тому
I wish I have watched this video before my interview as I have failed in answering storage classes... Thanks Nana, I will stay tuned for future videos.
@Ali-mi1hn
@Ali-mi1hn 3 роки тому
it happens to all of us.Don't worry you will ace it in the next interview.
@arjunk5959
@arjunk5959 2 роки тому
Haha i wish too.. Many K8's volume related questions for GCP interviews especially..
@thebadtaste92
@thebadtaste92 3 роки тому
The best video on this very tricky part of K8s. Thank you !
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
I'm really glad to hear! 😊
@ragingpahadi
@ragingpahadi 3 роки тому
Best video series on k8s ! Thanks for your time and energy Nana !
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
Thank you 🙂
@sujeetkumar.
@sujeetkumar. 2 роки тому
You cleared all my doubts regarding pv and pvc. I was very confused.
@ginamoghaddam3165
@ginamoghaddam3165 2 роки тому
You are always the best in explanation the concept🥰☺️ Love you Nina🌹
@sauravbhagat4737
@sauravbhagat4737 3 роки тому
Great video, What I missed in a high level manner only is that how the admins configure the storage class/PV with the actual physical storage be it cloud or local.
@tanuvishu
@tanuvishu 3 роки тому
Excellent explanation, one of the best explanations that I have come across about volumes on k8s
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
Thank you so much Vishal 😊
@harjos78
@harjos78 2 роки тому
Thank you Nana. nicely explained and made it so simple
@avinashkashyapaa
@avinashkashyapaa 3 роки тому
Excellent video to understand K8S Volumes!! Thank you very much!...
@issakandji627
@issakandji627 3 роки тому
Thanks Anna for sharing your knowledges. You're really rocking the tech world!
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
Thank you Issa 🙂
@yapadqoi
@yapadqoi 3 роки тому
Now I understand everything about Kubernetes. Great job, thanks! SUBSCRIBED. LIKED. SHARED.
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
Thank you 😊
@susmitagangopadhyay2412
@susmitagangopadhyay2412 3 роки тому
Excellent explanation of the concepts. Thank you !
@hoseinmaghoul8876
@hoseinmaghoul8876 5 місяців тому
You teach very well, I appreciate you
@sathishdarshanala6137
@sathishdarshanala6137 2 роки тому
Thnks you so much for making us to comprehend the kubernetes topics. iam new to this chanel,what a explanation got crsip idea about kubernetes storages
@jonghunpark1403
@jonghunpark1403 4 роки тому
Wow.. This helped a lot! Thank you so much for making quality vids on k8s!!
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
Thanks a lot JongHun, glad you like the videos! 🙂
@brianwells990
@brianwells990 3 роки тому
There's a reason why this video has hundreds of likes and not a single thumbs down. Some clown will change that eventually, but let the record show that as of now it's 429 up, 0 down. Trolls won't be able to change that fact tomorrow. Kudos to you, Nana. This was awesome stuff and a timely tutorial for yours truly.
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
Such positive feedbacks like yours and the awesome thumbs ratio is really awesome and motivates to keep creating these videos for you, thank you Brian! 🙂
@MyPinton
@MyPinton 3 роки тому
thank you nana for your wonderful explanation
@kursadgunes123
@kursadgunes123 11 місяців тому
Clear explanation with amazing content. Thanks!
@orancanoren7269
@orancanoren7269 3 роки тому
I've been working with k8s for more than 1 year now at a large software corporation and your videos have tidied up what I've learned during this time and made things much clear. It's great how systematically you proceed in these videos. Keep up the awesome work Nana!
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
Thank you for your great feedback! Really appreciate your words 😊
@sathishdarshanala6137
@sathishdarshanala6137 2 роки тому
hi oran
@anil5065
@anil5065 2 роки тому
you nailed it with your great explanation. Love your dedication to your tutoring. Just wondering here: are you updating these videos with latest updates from Kubernetes.
@engalibadouin5222
@engalibadouin5222 2 роки тому
Nana, You are fantastic and very simple thank you.
@antonyrichard369
@antonyrichard369 2 роки тому
Very useful and I got a clear understanding. Excellent one. Thanks for providing such videos for us.
@ibraheemalsaady3216
@ibraheemalsaady3216 3 роки тому
Amazing video, great explanation of the volumes
@alifiroozizamani7782
@alifiroozizamani7782 2 роки тому
OH MY GOD! What a useful video! Thank you so so much for your great videos and your way of teaching...🍻🙏
@rahul_bali
@rahul_bali 3 роки тому
Amazing simplistic high-level
@abdelrahmanabdelfattah1092
@abdelrahmanabdelfattah1092 3 роки тому
Clear explanation, great effort , thanks very much
@ceramicfish4934
@ceramicfish4934 2 роки тому
Thanks for this great video. I finally understand kubernetes.
@sandeepkatthi
@sandeepkatthi 3 роки тому
Waiting for that different kinds of volumes demo 😊
@joepinto5066
@joepinto5066 9 місяців тому
Perfect and about mounting in AWS EBS have you some explanation ?, thanks a lot
@sarawaheed8351
@sarawaheed8351 Рік тому
thanks alot @TechWorldWithNana for creating this amazing series however its a request please make a video on practicle examples of pv and statefullset as you mentioned in the video it will be huge help for us
@gv.ramana
@gv.ramana 3 роки тому
Clear clean explanation. your presentations simply awesome. i can understand how much efforts your put for presentations. keep it good stuff.
@TechWorldwithNana
@TechWorldwithNana 3 роки тому
Thank you so much 🤗 Appreciate your feedback! Yes I try to make a lot of animations to help better understand the topic.
@Sachin2011jan
@Sachin2011jan Рік тому
Greatly explained Nana. Appreciated...
@geoffreyworrell9069
@geoffreyworrell9069 3 роки тому
This was fantastic! Thanks!
Kubernetes ConfigMap and Secret as Kubernetes Volumes | Demo
16:54
TechWorld with Nana
Переглядів 187 тис.
How Prometheus Monitoring works | Prometheus Architecture explained
21:31
TechWorld with Nana
Переглядів 980 тис.
Лизка заплакала смотря видео котиков🙀😭
00:33
Kubernetes Volumes Simplified
39:37
Pavan Elthepu
Переглядів 26 тис.
Kubernetes StatefulSet simply explained | Deployment vs StatefulSet
16:00
TechWorld with Nana
Переглядів 218 тис.
Pods and Containers - Kubernetes Networking | Container Communication inside the Pod
13:40
What is Helm in Kubernetes? Helm and Helm Charts explained  | Kubernetes Tutorial 23
14:16
Persistent Volumes on Kubernetes for beginners
18:47
That DevOps Guy
Переглядів 49 тис.
Docker Crash Course for Absolute Beginners [NEW]
1:07:39
TechWorld with Nana
Переглядів 1,3 млн