Thanks for this. I needed a nice refresher on autoscaling.
@cezexcezex98884 жыл бұрын
a reliable and practical approach to the basics of scaling
@saikrishna7873 жыл бұрын
Thankyou somuch marcel I've been looking everywhere for this explanation thank god i found u and didn't knew that u hv explained them a year ago ❤️❤️
@MarcelDempers3 жыл бұрын
You are very welcome
@drewworksgh Жыл бұрын
Needed this 🙌 🙏
@asiselwa35062 жыл бұрын
I'm honestly very excited as you explain. very very professional. thanks for the know-how transfer. I even recommended your videos to my colleagues, they like you too :) thanks thanks thanks you always make my days :)
@hrvojetonkovac65194 жыл бұрын
Hi Marcel. Great video as always. Thanks
@everythingdevops40483 жыл бұрын
Thank you so much, you are generous and kind!
@fkangalov Жыл бұрын
Very helpful video as always! Thanks!
@jasonhoover13114 жыл бұрын
Nice triceps, man! Looking jacked!! 💪💪
@AndrzejHochbaum2 жыл бұрын
Fantastic tutorial - thanks!
@xinitbm94534 жыл бұрын
Wow! Thank you very much Marcel for teaching and sharing all your demo samples. This helps a lot.
@Shuubham_Harilal_Saroj2 жыл бұрын
This is really amazing.
@helders4 жыл бұрын
I already said that your videos are awesome and if you don't mind i'd like to make a suggestion, it would be great if you would break the video in chapters using KZbin feature, this way we can go straight to a certain point we want to review for example. And again, awesome content, you rock
@manedurphy3 жыл бұрын
Unreal quality. Thank you!
@colunizator Жыл бұрын
Very good video and presentation. Thanks a lot.
@xxsybreedxx3 жыл бұрын
Maan, youre the devops monster!
@marklong65724 жыл бұрын
Yes! Anoher gem. You're on a roll bro!
@aryklein4 жыл бұрын
Thanks for sharing Marcel! Awesome video man
@Mashaill4 жыл бұрын
Many thanks JIT video
@MRkumar-kx8rw2 жыл бұрын
Hi, thanks for detail steps and i have followed everything but in VPA recommendations are not showing
@hachastico6744 жыл бұрын
Damn! This is so good material! Thanks a lot
@silentwatcher134 жыл бұрын
good job marcel, awesome video 👏🏼.. kubectl apply thankyou.yaml 😉
@luqmansen4 жыл бұрын
I love your opening sountrack
@bled_20334 жыл бұрын
Great work! I like your video!
@omarnoureldin18382 жыл бұрын
Great Video! Thanks for the detailed walk through. Just one question, why did we install the VPA from a container that can access our cluster, instead of directly installing it to our cluster like we did with the metrics server and application pods?
@MarcelDempers2 жыл бұрын
As far as I can remember at the time of this video, the VPA install scripts are Linux compatible only, requires few dependencies. Containers make this portable
@bhaskar18432 жыл бұрын
I think for autoscaling of nodes we already setup in our cloud like “target groups” and coming to pod level we use replica sets Then what will be purpose this pod level scaling again???
@thiagocnunes3 жыл бұрын
Amazing, thanks !
@gmanIL3 жыл бұрын
Amazing Stuff. Thanks.
@rkgaming75792 жыл бұрын
dude it's really nice explained subscribe...
@songshindi63763 жыл бұрын
Excellent session on hpa ...pls upload helm chart detailed video.thank you
@pasqualepunzo34064 жыл бұрын
thank you marcel !
@MegaAVINASH243 жыл бұрын
I am getting “error running summary “. Can you help me with the fix? I cloned from git and did kubectl apply
@mertcanoksuz7453 жыл бұрын
Very helpful video. A blessing to me, because I am currently working on my bachelors thesis. But I have a question. So using the VPA, you can define the requested resources more efficiently. But using the VPA brings no performance improvement, right? Because no matter what the current requested cpu is in the yaml file is, the pod will take as much resources as needed and available to my understanding (provided that there is no limit specified).
@MarcelDempers3 жыл бұрын
You're right. Requested value simply helps the scheduler predict where the best place to schedule the pod is. There is no performance impact or gain. The pod will use as much CPU as it can see, which is the "limit" field in the YAML. Sometimes it may see all cores in the node, but the kernel will restrict it to only the limit in the YAML. Linux kernel has built in CPU throttling that K8s uses
@mertcanoksuz7453 жыл бұрын
@@MarcelDempers Thank you very much for your quick response and further explanation. Have a great one!
@romandolya45483 жыл бұрын
Awesome explanation! What theme are you using in vscode? It looks nice
@7BlackJack8 Жыл бұрын
pure gold
@prashnttf4 жыл бұрын
Thanks a lot its really helpful. How do we reserve system allocatable over ami to for kubelet.
@gdevelek2 жыл бұрын
A critical question I have not found an answer for yet: in AUTO mode, how often does it intervene to make changes?
@EthanLR3 жыл бұрын
12:44 why use debian instead of alpine? Is a vpa able to be installed on alpine? And thanks for the video!
@MarcelDempers3 жыл бұрын
The VPA repo has a vpa-up script which is assumed to be executed on a person's PC to deploy the components. It seems to be written for debian\ubuntu based OS so did not want to deal with dependencies to attempt an alpine port. I'm sure you could get it to work on alpine but may require changes
@EthanLR3 жыл бұрын
@@MarcelDempers thanks
@atanudebnath91734 жыл бұрын
Awesome 👍
@m19mesoto4 жыл бұрын
Thank you!!!!!!!
@AmanDeep-rv1sd3 жыл бұрын
ive read that vpa shouldnt be used in prod as it regularly restarts the pods.. is this true? if yes and if I have to run it in dev env, how am I gonna do accurate load testing.. is the only way here is to replicate the load in prod and do manual load testing in dev?
@jurajnovotny47257 ай бұрын
Hi, any news regarding the restarting the pods ? Did you have a chance to test it ?
@daemon97122 жыл бұрын
As always awesome video and explaination. But i have one question, can we implement the VPA and HPA at the same time. If yes please make a video on that or explain in comment. Let suppose, we implement the VPA, and in the node we have limited resources in the node, then what will happen to that pod? If we want to enable VPA and Cluster Auto Scaler, who can we perform that?
@MarcelDempers2 жыл бұрын
You can use VPA\HPA\Cluster-autoscaler at the same time. The VPA will simply recommend resource limits based on actual usage. I would personally not have the VPA run in auto update mode. You need to manually set limits equests based on how you want to slice and dice your resources for pods. A resource hungry pod will use all resources on a node and starve it. You can add the cluster autoscaler to add more nodes when this happens
@creative-commons-videos3 жыл бұрын
can you make a video on Rancher 2 ?
@chornsokun4 жыл бұрын
You deserve a good haircut 😆
@mooa65543 жыл бұрын
Your videos are nice. Your muscular arms is sometimes distracting😀
@ashishbadgujar82152 жыл бұрын
same here😅
@lukapiske3 жыл бұрын
Ou I am so much afraid now
@bobfunk5055 Жыл бұрын
Some great stuff in hear but editing out every breath into one long relentless barrage of words is tiring to listen to.