Kubernetes is dropping Docker support - What does it mean for YOU?

Поделиться
HTML-код
  • Опубликовано: 30 сен 2024

Комментарии • 466

  • @TechWorldwithNana
    @TechWorldwithNana  3 года назад +135

    I hope this clarifies all your questions, if not - leave a comment and I will try to answer it!
    If it was helpful, please leave a like and subscribe 😊 👍
    Follow me on Instagram for behind the scenes content 🎬: bit.ly/2F3LXYJ
    🔗 Useful Links:
    * kubernetes.io/blog/2020/12/02/dockershim-faq/
    * kubernetes.io/blog/2020/12/02/dont-panic-kubernetes-and-docker/
    ▬▬▬▬▬▬ T I M E S T A M P S ⏰ ▬▬▬▬▬▬
    0:00 - Intro
    0:18 - Why has Docker been deprecated?
    3:10 - Container Runtime alternatives?
    4:17 - What does this change mean for YOU as a Kubernetes User?
    5:07 - What does this change mean for YOU as a Kubernetes Administrator?
    5:30 - when using Managed Kubernetes Service
    6:32 - with self-managed Kubernetes cluster
    7:58 - When do you need to take action?
    8:45 - Impact on using Kubernetes locally with Minikube and Docker Desktop
    9:42 - Still learn Docker? CI/CD Pipeline with Docker?
    12:00 - Wrap-Up

    • @0xDEADBEEF
      @0xDEADBEEF 3 года назад +2

      I think you did not clearly answered to the question: "Should ppl learn/use docker or move forward and use containerd or cri-o?"

    • @ivanpolchenko
      @ivanpolchenko 3 года назад

      I think what's left unanswered for me is, okay so if docker and all of its networking and etc is going away. whats taking over? how is the ipam and host-container nat going to be taken care of?

    • @shawnchong5196
      @shawnchong5196 3 года назад +1

      Nice video: This video just clarified the hoopla and garbage that a lot of people are throwing around. Basically nothing changes for people who are using docker tech correctly, which is proabably 98% of people out there anyways, and the benefit is kubernetes made their product more lightweight and not have to worry about the hell annoying updates of docker that happen all the time, and can break (updates are good, but annoying)
      Disclaimer: I am not an experienced netop/devops, my main role is developer, but I maintain servers on AWS (8 servers) for my side business, and lead netops/devops (not 100% professional, but probably better than the avg 2 yr experienced fool that has blogs online about bullcrap as I have been working with online tech for 18+ years).
      As for what others are saying: should I learn docker? I think the easiest answer is this: if you don't know why you are using docker, then maybe you don't use it? If you know why you want to use docker, then use it. Docker is a good choice, all others saying: this is better, that is better - yah probably 1-sided experience. Docker is easy to use, esp for beginners and THIS IS MOST IMPORTANT.
      If people are saying "10% faster" and stuff like that, this is pure garbage, if you know systems, you aren't concerned about 10% faster for your servers/containers, 10% would be MAYBE important for SQL server, when you are at the cusp of a breaking point of the system, but even then, you gotta change the implementation: split DBs into two servers. So rule: 10% faster means nothing, really, because you just spin up another load balanced server anyways to reduce load - these are just foolish people if they want to really make this into an issue. FASTER BY 10% DOESN'T MATTER REALLY.
      I will give a case where we want to use docker, and docker is good - docker runs on major OSes, and allows you to build containers (which is basically functions like a VM, without the overhead that most VMs have) - for example, we have a system where we have 4 different servers, we use cloud providers and Centos 7 (screw IBM RH), to develop locally, it's great to use dockers so that we can mimic the interactions of servers right on our computer (local dev env). DOCKER IS GOOD FOR DEVS!
      So on production, when to use containers? You have a choice now (AWS) - use EC2 instances OR use containers. What are the differences, and benefits for each? A lot goes to having experience - if you running lightweight processes that don't do much, like the majority of nodeJs servers people write, and services which they offer, then containers are a great option on cloud providers especially, because it's cheaper to have 1-2 live and 1 backup containers, then lets say than paying for 3 servers. It's almost always safer to have several servers running than 1 super server (what happens if that hardware dies on the super server, your services are GONE). Keyword: load balancing. Now 1 type of server is our web servers, so obviously you want to load balance two or more in production. CONTAINERS COULD BE CHEAPER THAN SERVERS.
      Is it easier to maintain containers than lets say traditional servers? I'm going to say if you are spinning up 64 load balanced servers, it's gonna get costly, and containers makes more sense, as they were built for huge numbers. But in all small to medium network sizes of small to medium companies, or start ups, it doesn't really matter tbh. If you actually have 1K concurrent users, then containers are great! If you running even apache php servers, you could go with containers too! it's understanding the resources/performance and costs. CONTAINERS ARE GOOD IF YOU WANT TO LOAD BALANCE 100 "SERVERS" ON LOAD BALANCER.
      In the end, when using cloud providers, like AWS, you have a choice of deployment now - ec2 load balanced or fargate containers. As far as I am concerned, if you don't have 1k+ concurrent users, you might not necessarily use fargate (or kubernetes) and container images. But you never had to because you could always use the traditional methods of using servers. DEPENDING ON REALISTIC SCALES AND WHAT YOUR SYSTEM IS, CONTAINERS OR NON-CONTAINERS ARE VIABLE IN A LOT OF GENERAL CASES.
      Anyone pushing anything real hard outside of this are just "experts" in their own fields, because all container tech are about the same, docker is great for the dev process, and it's big, like in this video. But those tools AREN'T NEEDED on your production servers (docker full features) because you shouldn't be building debugging your containers on production and for sure, you shouldn't be using docker network layer AT ALL on production. DOCKER RUNNING IN PRODUCTION IS DANGEROUS (SECURITY), DON'T NEED FULL DOCKER ON PRODUCTION ANYWAYS.
      In the end, you just have to think of a container as a VM and you can 32/64 "servers" in containers on a computer, think of it that way. It's probably safer and better than running 1 service on a computer (in general), which may crash in an edge case or some other weird issue (which maybe due to degradation over time, bad 3rd party software).

    • @MyLife-tx2wr
      @MyLife-tx2wr 3 года назад

      ]]i

    • @imransheikh578
      @imransheikh578 3 года назад

      Nana, great video. Isn't the question a bit misleading? Is it not the case that K8s are dropping support for docker shim rather than docker? The K8s support for OCI has never been in doubt and the docker obviously is compliant with OCI. K8s are not required to support individual containers but rather focus on the Open Container Initiative, which is still the case. Would you agree to that?

  • @ShreyasPBabu
    @ShreyasPBabu 3 года назад +328

    Went from "Oh Shit! we're screwed" to "Ah, this is fine" in 12 minutes.

  • @sasikanth6026
    @sasikanth6026 3 года назад +248

    200% clear, no more questions.. Great explanation.. Thank you..

    • @TechWorldwithNana
      @TechWorldwithNana  3 года назад +12

      Glad it was helpful for you 😊

    • @gammelgaardmink
      @gammelgaardmink 3 года назад +13

      I couldn't agree more. It's been a while since I watched a video about tech, with such a clear explanation of the topic - thx!

  • @tonytwostep_
    @tonytwostep_ 3 года назад +23

    As someone with a self managed and on-prem K8s cluster, I will say that changing the container runtime from docker to containerd was not only fairly straight forward, but I'm also noticing better node resource availability which makes sense given the heaviness of dockershim vs natively supported cri. I will say, the process to change runtimes was not well documented as of yet, but if anyone needs assistance and is also using kubdadm to manage their on-prem clusters, just hit me up!

  • @ravindrav1450
    @ravindrav1450 3 года назад +32

    My most productive 12.21 minutes of today; Thank you Nana :-)

  • @charan24119
    @charan24119 3 года назад +21

    Yes, the very first minute I saw, I thought kubernetes Twitter page got hacked 🤣🤣🤣

  • @pedroreisbr
    @pedroreisbr 3 года назад +21

    The Queen of DevOps, sharp as always!

  • @kvkrishna143
    @kvkrishna143 3 года назад +14

    Bird's eye view of the recent K8's announcement, there were articles that mislead (for various reasons) "Docker" (instead of Dockershime) being dropped.

  • @Joe-tk8cx
    @Joe-tk8cx 3 года назад +13

    Perfect explanation, just the thing I needed, just as request, can you do a tutorial on crio or containerd.

  • @Farrukhw
    @Farrukhw 3 года назад +9

    Thank you Nana... Actually, I never knew about this change and at first, I got worried, as I only worked with docker...

  • @AllenLSY
    @AllenLSY 3 года назад +13

    Clear, concise enough, saves people's time to look elsewhere. Nana, I support you.

    • @TechWorldwithNana
      @TechWorldwithNana  3 года назад

      Thanks for your feedback Allen, glad it's helpful :)

  • @melvinkimathi8924
    @melvinkimathi8924 3 года назад +8

    i wish i had discovered this channel earlier ... you got yourself a new subscriber

  • @unmiss-com
    @unmiss-com 3 года назад +5

    Thanks for sharing new valuable insights. Love your approach. All content creators should create value as maximum as possible.

  • @bensonkwong7554
    @bensonkwong7554 3 года назад +2

    Hi Nana, just FYI, u mentioned in the video that EKS has adopted containerd as the container runtime, which is not 100% the case, to be precise. EKS for Fargate has adopted containerd, but not for EKS for EC2.

  • @ebenessy
    @ebenessy 3 года назад +6

    It's the first time I see your channel and I'm really impressed by the quality of your explanations and the way you're presenting them. Pleased continue this great work. Thank you.

  • @konstantindimitrov2019
    @konstantindimitrov2019 3 года назад +1

    There is still going to be an issue. The docker-in-docker pattern will no longer work in Kubernetes, because there is no Docker engine underneath and I don't think that's something criO or containerD can do alone. The Docker images are OCI compliant but the Docker engine isn't, and that's the whole problem Kubernetes are having - the engine, and hence its removal. So, if you're using /var/run/docker.sock in ur cluster, that's going to break.

  • @jaysizmir9432
    @jaysizmir9432 3 года назад +14

    i am a simple man, i see Nana posts something i watch immediately :) !

  • @1234mytubeuser1234
    @1234mytubeuser1234 3 года назад +4

    No matter how difficult or confusing the subject may be, Nana knows the way to break it down to make super duper easy. My 2 year old has no further questions, so do I :) Thanks Nana...

  • @HazzferProlence
    @HazzferProlence Год назад +1

    One of the best videos about this subject... but I just don't know why are you not able to say Azure, when you are listing clouds providers lol

  • @johnmichaelechavez5979
    @johnmichaelechavez5979 3 года назад +15

    i love how she explained.

  • @DevelopersWork
    @DevelopersWork 3 года назад +3

    Hey, I hope you are doing good. My doubt is whether can we still use docker containers during development and later during production make the conversion or whatever to deploy. I have very little knowledge in docker and still learning. I haven't even get started with kubernetes too, I just know few commands. If my question feels dump please ignore it :)

  • @Tradebull03
    @Tradebull03 3 года назад +61

    I am in love with this women. The way she explains the things is "Next Level".

    • @TechWorldwithNana
      @TechWorldwithNana  3 года назад +5

      Thanks Shahvez! :)

    • @goqsane
      @goqsane 3 года назад +7

      So now you can go back to the dictionary and learn about the difference between "woman" and "women".

    • @arunabhbhattacharya5314
      @arunabhbhattacharya5314 3 года назад

      @@goqsane "woman" is singular and "women" is plural.

    • @vids5384
      @vids5384 3 года назад

      So I'm I, I am now trying not to watch 😊🙆

    • @sauljahboi5965
      @sauljahboi5965 3 года назад +1

      Simp

  • @manikanthanekkalapudi
    @manikanthanekkalapudi 3 года назад +3

    Thank you Nana! Such a simple explanation🙏 Subscribed!

  • @rajib2k5
    @rajib2k5 3 года назад +3

    Thanks for sharing this update! Joining the fan club. :D

  • @AlfianFirmansyah
    @AlfianFirmansyah 3 года назад +4

    I was clapping👏when you clearly explaining the CI/CI part needs docker or not. thank's nana.

  •  3 года назад +6

    Nana, thank you for this!

  • @dharmeshp4697
    @dharmeshp4697 3 года назад +3

    Not dropping the support but just moving ! It is wrong interpretation Nana!

  • @ahmedouyahya
    @ahmedouyahya 3 года назад

    Yemi 4elli guelti wade7 n7n n5la3ne 3an projehne lahi ye5ser.
    Thank you so much.

  • @kenchang3456
    @kenchang3456 3 года назад +3

    Whew, thank you for this video! As a newbie using docker for development this took a load off my mind.

  • @vadimkvetnoy4673
    @vadimkvetnoy4673 3 года назад +4

    Спасибо, Нана. Очень хорошее ревю

  • @jeannuaman7955
    @jeannuaman7955 3 года назад +1

    Exceptional knowledge!

  • @NghiaTran-er5mp
    @NghiaTran-er5mp 3 года назад +3

    So the question u haven't answered clearly. Should newcomers keep learning docker or containerd instead? Thanks for the great video !

    • @sanderd17
      @sanderd17 3 года назад

      Docker is still good for development as it ships with everything you need to build a fixed, repeatable environment. And docker uses containerd, so if you learn about docker, you learn about containerd anyway.

    • @maarten1012TTT
      @maarten1012TTT 3 года назад +1

      I taught containerd was only for running containers. And docker, among others, also for building them

    • @haakonness
      @haakonness 3 года назад

      You still should learn docker, since you build your images with it. containerd is just the component that runs the containers.

  • @jondoe79
    @jondoe79 2 года назад +1

    Simple, sweet, and concise. 👍

  • @mohanurs2943
    @mohanurs2943 3 года назад +1

    @Nana - Thanks for the clear explanation. I am a new subscriber to your YT channel, interested to learn Ansible, Docker & K8s tools.

  • @pipe7752
    @pipe7752 3 года назад +1

    good job

  • @ravivemula6691
    @ravivemula6691 2 года назад +1

    Tqs madam for giving good information

  • @mihaioprea7554
    @mihaioprea7554 3 года назад +1

    Alarmist title to attract views. Lame!

  • @smitshah1737
    @smitshah1737 3 года назад +2

    Now I am cristal clear about changes! Thanks, Tina!

  • @juliodias3342
    @juliodias3342 3 года назад +3

    Thanks for the explanation, Nana! Great as always :D

  • @altuhovsu
    @altuhovsu 3 года назад +3

    Thank you!! Waiting for an Istio and service mesh

    • @TechWorldwithNana
      @TechWorldwithNana  3 года назад

      Hi Dmitriy, that video will come next! 👍 I had to postpone it because of this announcement 🙈

  • @taranjotsingh2374
    @taranjotsingh2374 3 года назад +2

    Your videos really create impact on freshers like me... Thanks Nana form bottom of my heart.....

  • @ashwinin4819
    @ashwinin4819 3 года назад +9

    When we watch a video we get so many questions,.how why, and this video answers all those questions the next minute/seconds... Thank you so much. Subscribed!!

    • @TechWorldwithNana
      @TechWorldwithNana  3 года назад +1

      Welcome to the channel 😊 Thank you so much for your positive comment!

  • @kriansa
    @kriansa 3 года назад +3

    Wow, very informative and such a high-quality content!

  • @trashmail8
    @trashmail8 3 года назад +1

    Awesome video, huge thanks for the clear explanation. Sadly I can only wow this and give a single like. In my mind I'm sending you many more though. 👍🖖😃

  • @einarabelc5
    @einarabelc5 3 года назад

    To save you time:
    What's actually being deprecated by the K8s team:
    ruclips.net/video/7KUdmFyefSA/видео.html
    Who's taking over instead:
    ruclips.net/video/7KUdmFyefSA/видео.html
    Conclusion: You can either:
    a.-use Docker runtime ONLY if you do things the K8s way.
    b.-Install Dockershim separately by referring to Mirantis.

  • @SanjayKumar-rf6kh
    @SanjayKumar-rf6kh 3 года назад +1

    Just brilliant Nana. Keep up the good work !. I have referred a couple of your videos and became your big fan. The way you explain the concept is just amazing. God bless you.

  • @Castisland
    @Castisland 3 года назад +1

    Thank you..Please make videos on AWS services

  • @runoso
    @runoso 3 года назад +1

    Thanks

  • @koms313
    @koms313 3 года назад +1

    I guess docker commands will no longer works in Kubernetes cluster (for troubleshooting purposes only). Is my understanding correct?

  • @einarabelc5
    @einarabelc5 3 года назад

    Blimey...that's like Closed Source approach, that means that other microservice platforms are going to either do the same or continue to use the full docker support approach. No more Docker way of doing things then, but k8s way only. Correct me if I'm wrong please. I definitely would need the different networking modes Docker offers for example...Do you know how many people use EC2 and build K8s from scratch?

  • @WarRior-rn4kb
    @WarRior-rn4kb 3 года назад

    😂😂🤣😂 JUST IN I.T. I mean I get it, but it's still funny to see how things change so fast. remember when employers were asking knowledge and experience on both of these is a must? funny sad.

  • @zahurulhaque6377
    @zahurulhaque6377 3 года назад +1

    Nana, you are the best to explain the change, I was boiling the ocean to understand the change, but you nailed it in 12 min. Thanks a lot, keep up the good work. always following you.

  • @VamasivanMayurathan
    @VamasivanMayurathan 3 года назад +2

    omg! you have structured your content perfectly.. in the middle I started think so in that case... and next second you have answer to that as well :-)

  • @MrNickolay1986
    @MrNickolay1986 2 года назад

    I don't understand - if Docker can run on any container runtime, because both CRI-O and Docker comply to some OCI standard, why did Kubernetes dropped support for Docker then? How does it make it more efficient in terms of resource usage if you're still going to build Docker image with all that stuff inside and it will still be used in Kubernetes?

  • @KogiSyl
    @KogiSyl 3 года назад

    Once I did use docker during the development, because the previous it leader really liked it, but then I dropped it and the work sped up by few times. I never really understood why would you even use this tool for a middle sized application that we were developing. Our app only used one virtual server with 8 cores at the time, later expanded to 16. The amount of code was merely about half a million of lines. We didn't use Microservices because this isn't really a useful thing for middle or small apps.
    We were running docker on windows and that middle sized app was enough to make it run sluggishly ( yea, we did set up everything to maximise speed of the virtual machine).
    Later I decided to change my machine to the same operating system on which our server worked and the work sped up enormously
    Guys, don't follow the hypes, think before you will use something. Don't use docker just because it is popular, in 90% of cases you don't need any docker at all and it won't speed up anything.

  • @stas_kats
    @stas_kats 3 года назад +3

    Thank you so much) you save me more time

  • @lalitds8427
    @lalitds8427 3 года назад +1

    Very much clear 👍🙂. as always great explanation Nana...👍

  • @dmitry6472
    @dmitry6472 3 года назад

    Kubernetes is dropping Docker support - What does it mean for YOU? If you need to watch this video, then there is huge probability it means nothing to YOU :)

  • @joshuacallis3136
    @joshuacallis3136 3 года назад

    It's not actually dropping docker support? k8 supports the open container initiative, which docker is fully compatible with. So, we can always use docker with k8. They've made the move because they want people to realise that there are other options.

  • @danielyount9812
    @danielyount9812 3 года назад +1

    Thanks for the rundown of the cluster changes. Having to fight to find documentation for setting a local private K8 cluster, I was set a back that this was going to be a bad thing. But with your explanation, sound like it will be smooth sailing. I would take this as a advantage to move Docker closer to the top of the stack. Containers are very slow compared to VM's(around half speed. You want VM's over containers for time sensitive services) So to take out another layer of slowness would be a bonus, if you choose the container option. If for some reason you still need the shim , it's an option.

  • @tarasankarbanerjee
    @tarasankarbanerjee 3 года назад +2

    Excellent as always!! How do you anticipate all the questions that can arise!! Just awesome..

    • @TechWorldwithNana
      @TechWorldwithNana  3 года назад

      😀 thank you so much! I read a lot of your comments and questions and try to answer them in the videos 😊

  • @gowthamcrr
    @gowthamcrr 3 года назад +1

    Very clearly explained. Thanks for the Video!!!

  • @cduran1983
    @cduran1983 2 года назад

    So, if I use minikube as a replacement of Docker Desktop. With this update am not going to be able to do "docker build" or "docker push" from my host machine anymore? 🤔

  • @yoogeshsharma2977
    @yoogeshsharma2977 3 года назад

    What if you have created a cluster using KOPS (github.com/kubernetes/kops)? Do you need any extra configuration ?

  • @rsrini7
    @rsrini7 3 года назад +1

    Wow!! Thanks for very clear explanation...

  • @ronanluciopereira8800
    @ronanluciopereira8800 3 года назад +1

    Excellent explanation. Thank you

  • @mohsenfilm
    @mohsenfilm 3 года назад +1

    Perfect video, very clarify answers my questions about this news! thanks for your video

  • @amarlukade2225
    @amarlukade2225 3 года назад

    super fantastic... you are mind blowing..
    very much hard topic now i understand in few minutes..
    credit goes to ur video..
    thanks

  • @aasish.san1188
    @aasish.san1188 2 года назад

    If I am on 19.x and upgrade to 22.x, will the run time get migrated to containerd automatically without me changing anything? Any impact>

  • @soumynonareverse7807
    @soumynonareverse7807 3 года назад

    So what if I want Home assistant server to run in a container and say LG Web OS or Kodi on another. And I want to be able to manage my containers in a grafical web interface. What software should I use?
    Worth mentioning is that I'll be running it on a raspberry pi 4

  • @research4u
    @research4u 3 года назад

    Very good explanation, i subscribed and going to watch all your videos Nana. please put more videos for learning :)

  • @MarimuthuSA
    @MarimuthuSA 2 года назад

    Awesome clear explanation. Thanks a lot for publishing this video.

  • @dbmscreen
    @dbmscreen 3 года назад +3

    Subscribed!

  • @rexxon1611
    @rexxon1611 3 года назад +1

    I wish that I can give you 1000 likes

  • @JoshPeak
    @JoshPeak 3 года назад +11

    I love how well researched and articulated this is!!! 👏 thank you! I learnt a lot about “the in between bits” too.

  • @s.i.m.c.a
    @s.i.m.c.a 3 года назад

    misleading video - docker are installed itself as containerd + the rest tools...thus you still can just install docker + k8s in a usual way. Nothing changed.

  • @sandeepsiddharth1248
    @sandeepsiddharth1248 3 года назад

    wow! that's clear and precise. No bullshit. From where did you learn all these devops concepts? can you share your experiences

  • @JustVincentD
    @JustVincentD 3 года назад

    Can't u just build Open Container Images with docker and run your stuff anywhere?

  • @tamilstalin4609
    @tamilstalin4609 3 года назад +1

    Excellent explanation, Thanks Nana

  • @R-Kannada-DevOps
    @R-Kannada-DevOps 3 года назад

    But after pulling several docker image to Kubernetes node , how to delete those image without docker install, like how we are docker rmi , please suggest solution to delete docker images in my k8's master node , i am using contained now

  • @olafdraeger5500
    @olafdraeger5500 3 года назад +1

    Thanks again, nice and clear! What are actually the differences/advantages/disadvantages of all these different runtimes and why do we actually have so many?

  • @ajaysriram2351
    @ajaysriram2351 3 года назад

    Hi I found multiple videos on docker and kubernet in playlist. Which one I follow?.

  • @Techonsapevole
    @Techonsapevole 3 года назад

    Thanks for the explanation

  • @rapidwav5669
    @rapidwav5669 3 года назад

    Use UBiqube MSA for Container and VNF orchestration

  • @swapankumarsoren2356
    @swapankumarsoren2356 3 года назад +1

    Thanks Nana, my wait and patience is over, now I can have my coffee.😊 👍😊

  • @Htnawsaj
    @Htnawsaj 3 года назад +2

    Perfect... More such videos are welcome whenever we hear new announcements or deprecations

  • @unknown-sc6if
    @unknown-sc6if 3 года назад

    after 4 month. kubernates running very well and faster than normal kvm / other virtualization. omg

  • @serrottf
    @serrottf 3 года назад +2

    Finally someone that explains clearly! Great Work!

  • @prabhujeeva2228
    @prabhujeeva2228 3 года назад +1

    Thanks for sharing it's very useful.

  • @cityofjoy8830
    @cityofjoy8830 3 года назад

    What DevOps is relevant in 2021. Please advise wrt career opportunities 🙏

  • @JavierGarcia-se3vi
    @JavierGarcia-se3vi 2 года назад

    Best explanation ever, thank you very much, Greetings! 😊

  • @lucarauchenberger628
    @lucarauchenberger628 3 года назад

    If I push a commit to a github repo and this triggers a build on my CI, should the CI test my code b4 or after building the image?

  • @PostAlbanian
    @PostAlbanian 3 года назад +1

    Am kind happy they dropped Docker it was really heavy in resources.

  • @bitronicc1887
    @bitronicc1887 3 года назад +1

    Thanks for the informative, well organized video.

  • @HarmonicResonanceScale
    @HarmonicResonanceScale 2 года назад

    is it because of things like Azure? Is docker simply being outclassed by the big dogs?

  • @KevinTurner-aka-keturn
    @KevinTurner-aka-keturn 3 года назад

    So we can still use Docker to create containers, even if k8s is not using the Docker Runtime.
    But is this a sign that we should consider other tools for container creation? Or do we expect Docker to be the best choice for that role for some time to come?

  • @rashidmahmood3722
    @rashidmahmood3722 3 года назад +2

    Thanks for sharing it, really appreciate it.

  • @Pjrdjf
    @Pjrdjf 3 года назад +1

    Thanks

  • @alxmats
    @alxmats 3 года назад

    This video is the best place to acknowledge that the author amongst other things is really beautiful girl.

  • @prabal37
    @prabal37 3 года назад +1

    Clear all the doubts.Great explanation