Thanks deekshit please do a video on end to end application deployment which covers devops major tools like git jenkins, python scripting ( if needed) docker ansible/kubernetes, monitoring & logging. such that one can gain full knowledge on where to improve the skills. you can do kind of series like each part per every one/two weeks as per ur schedule. most of ppl benifit from this
@maheshbabu80783 жыл бұрын
Thanks Tyson For asking my concern also deekshit please do one viedo on end to end deployment
@DeekshithSN3 жыл бұрын
Hey, Thanks for watching, I have already a playlist with name end to end project you can refer that it might help you 😊
@maheshbabu80783 жыл бұрын
@@DeekshithSN Thank you
@interestingdatascience80572 жыл бұрын
Hi Deekshith, thanks a lot for sharing this video, it will be great if you can show how to access the frontend application using INGRESS because that's the actual realtime use case which will help us in our project
@DeekshithSN2 жыл бұрын
Thank you ☺️ Will do video on it
@pasindunawodya98432 жыл бұрын
Thank you for your well explanation. This is the only video I found that solve my problems. KEEP GOING. Best of luck.
@valentinetong4813 Жыл бұрын
Brief and rich. Beautiful!!!
@DeekshithSN Жыл бұрын
Thank you for watching :)
@prakashsingh3336 Жыл бұрын
Very easy and explained video. Thank you so much. 👍
@souza80773 жыл бұрын
Thanks for the awesome video! Could you please make a video about the "tpl" language in helm charts used in "helpers.tlp" file? Explaining the sintax and how to do the logics behind this language.
@nikhithachandana7 ай бұрын
Please make a video on how to make a common helm chart for multiple microservices.
@DeekshithSN5 ай бұрын
Thanks for watching, this video might help you kzbin.info/www/bejne/kKeqaaWcf5mLrq8
@vikrantmehrol1950Ай бұрын
it is great explanation
@DeekshithSNАй бұрын
I am glad you liked it 😊
@chiranjeevirachapudi44122 жыл бұрын
very good explanation thank you so much
@sreenuthota54823 жыл бұрын
Hey deekshit superb explanation, can u do a complete video on ingress in k8s
@mohammadzahid43902 жыл бұрын
Thanks @deekshith for the awesome explanation. I have just one question. What problem did helm solved in this case of microservice? Let's say for each microservice you created 1 yaml file having deployment, service, config etc. with actual values that they need. This is exactly what the helm is doing. How exactly does helm solve my problem of DRY if you will be creating a helm chart for each microservice ? The amount of effort needed is same.
@DeekshithSN2 жыл бұрын
Thanks for watching video, I am glad that this video was useful to you 😊 Helm is package manager for kubernetes manifest files, helm can be very helpful when your application is complex, same helm chart has to be deployed accross multiple environments with only few config changes, situations like if it's dev env need to create only few objects and if it's higher env then need to create all the objects. Above are few situation helm can be useful. If you want to learn helm from basics then refer - kzbin.info/aero/PLLYW3zEOaqlKYku0piyzzLFGpR9VpPvXR Also I have discussed how helm can be used in prod scenarios - kzbin.info/www/bejne/kKeqaaWcf5mLrq8
@souza80773 жыл бұрын
Thanks for your awesome explanation Make one video about the .tpl language used in helm charts, how it works and its sintax
@ayencoscolfield33122 жыл бұрын
Thanks my friend for another awesome video
@DeekshithSN2 жыл бұрын
Thanks for the visit!!
@_mr.engineer3 жыл бұрын
Awesome explanation 👏👌👍😀
@sarathchandra63 жыл бұрын
Your videos are very useful.Good stuff👍
@DeekshithSN3 жыл бұрын
Glad you like them!
@mustaphag2 жыл бұрын
Excellent work. Keep up the good work
@sureshsg40603 жыл бұрын
good stuff bro, do we have Knative video?
@AnkitSharma-ph9kx2 жыл бұрын
hi all i am facing one query while implemeting helm charts . i have 3 helm charts seperately for 3 service namely s1,s2,s3 now i want to connect the s1 to s2 by providing the service name of s2 in s1 as the connections can be established through service name. but the service name is charts2.fullname in helm chart of s2 so how to tranfer the value of service name s2 in the helm chart of s1. or in short how to access the chart.fullname of s2 in the s1 helm chart. please answer
@christymariam512 жыл бұрын
Thankyou so much...this video helped!!💟
@suryasharma3399 Жыл бұрын
thanks
@aravindersuram69202 жыл бұрын
In helm when we developed the helm chart the namespace is default I want to change the namespace without using helm install -- namespace it should create in template and it should install default when we Install the helm chart can you suggest any way
@Castisland3 жыл бұрын
Nicely explained..
@DeekshithSN3 жыл бұрын
Thank you 😊
@GuruPrasad-be9ff3 жыл бұрын
I have two helm charts, each chart having one microservice, now my concern is I want to integrate two helm charts with one helm chart, like when I run helm install mychart, both services needs to run at a time Can you please help me on this.. Thanks in advance
@abhishekmishra2853 жыл бұрын
thanks for sharing @deekshith. if i want to deploy such a appliaction using helm and argocd on kubenetes, then how can we replace "values.yml" with some other name. please help me out.
@NotSureOf2 жыл бұрын
I dont get the point, why do we need helm charts for each micro service? we can do that by simple YAML file. just taking config through labels we need to go to helm? someone, please clarify this. thanks
@santhoshs6662 Жыл бұрын
Helm Chart adavantages ? or why we need to move to helm chart ? Simplified deployment: Helm charts provide a simple and standardized way of deploying complex applications on Kubernetes. They help to reduce the amount of time and effort required to deploy an application by encapsulating all the necessary components, such as configuration files, Kubernetes manifests, and dependencies, into a single package. Scalability: Helm charts allow you to easily scale your application by deploying multiple replicas of the same chart. This can be done by simply changing the replica count value in the Helm chart's configuration file. Reusability: Helm charts can be shared and reused across different teams and environments. This means that you can easily deploy the same application in different environments, such as development, staging, and production, by simply adjusting the configuration files. Versioning and Rollbacks: Helm charts support versioning, which makes it easy to roll back to a previous version of the application if there are any issues with the current deployment. This can be done by simply specifying the version number of the chart during deployment. Community Support: Helm is an open-source tool with a large and active community. This means that there are many pre-built Helm charts available for popular applications and services, which can save you time and effort in deploying and managing your applications.
@aravindersuram69202 жыл бұрын
Can you explain pvc in helm chart
@senthilkumar51292 жыл бұрын
Thank you
@Shakeersyed994992 жыл бұрын
Tq bro
@aravindersuram69203 жыл бұрын
blue green deployment in helm
@DeekshithSN3 жыл бұрын
Thanks for watching, Blue green is deployment strategy I guess nothing to do with helm charts
@aravindersuram69202 жыл бұрын
Yes we can used the Argocd for blue and green deployment in helm
@Twox27 Жыл бұрын
app name?
@DeekshithSN Жыл бұрын
Thanks for watching, there is no app name as such. It's sample app to show the demo on microservice deployment