Kubernetes Ingress Controllers In-Depth | Ingress Controllers vs Reverse Proxy | Path vs URL Routing

  Рет қаралды 30,466

DevOps Made Easy

DevOps Made Easy

Күн бұрын

Kubernetes Ingress Controllers In-Depth | Ingress Controllers vs Reverse Proxy | Path vs URL Routing
Join this channel to get access to perks:
/ @devopsmadeeasy

Пікірлер: 72
@goreana3761
@goreana3761 11 ай бұрын
this is the best explanation I've ever seen for Ingress. None of the courses explain so good, thank you!
@DevOpsMadeEasy
@DevOpsMadeEasy 11 ай бұрын
Glad it was helpful!
@SansaraDigi
@SansaraDigi 8 ай бұрын
hi how are you
@NikolaNovoselec
@NikolaNovoselec 7 ай бұрын
I agree!
@bhusaresomnath1670
@bhusaresomnath1670 2 жыл бұрын
Hence you Proved the name of yr channel Devops made easy you made ingress concept easy
@DevOpsMadeEasy
@DevOpsMadeEasy Жыл бұрын
Thank you :)
@ciscokissnn
@ciscokissnn Жыл бұрын
Damn !!!, the best session i've ever had in youtube!!!!
@DevOpsMadeEasy
@DevOpsMadeEasy Жыл бұрын
Thanks :)
@sandeepsiddharth1248
@sandeepsiddharth1248 2 жыл бұрын
much needed video! thanks vikram
@SHIRANSARUSI
@SHIRANSARUSI 2 жыл бұрын
best explanation I have heard! thank you
@DevOpsMadeEasy
@DevOpsMadeEasy 2 жыл бұрын
Thanks
@OlakunleAwonusi
@OlakunleAwonusi Жыл бұрын
Hello Sir, thanks for the video with clear explanations. Please, where can I find the code files used in the video? Your prompt response will be appreciated. Thanks.
@ittrends2425
@ittrends2425 24 күн бұрын
I have gone through many videos of ingress on youtube but this videos is class it's cleared the concept, Thanks brother
@DevOpsMadeEasy
@DevOpsMadeEasy 5 күн бұрын
You are most welcome
@salmannaqvi3076
@salmannaqvi3076 5 күн бұрын
Thanks
@DevOpsMadeEasy
@DevOpsMadeEasy 5 күн бұрын
Welcome
@deepanshudang1015
@deepanshudang1015 2 жыл бұрын
Can you please make a video on Production ready EKS Cluster provisioning
@shishirroy1516
@shishirroy1516 2 жыл бұрын
Nice one.
@mohammedrahib6888
@mohammedrahib6888 7 ай бұрын
hi sir, i have a doubt. in ingress path based routing /details, the application in flask-details container is running on / or /details? is there any rule that the app also should run on that particular given path??
@pjj7466
@pjj7466 Жыл бұрын
What was that middleware in between pod and service. What actual it does?
@DevOpsMadeEasy
@DevOpsMadeEasy Жыл бұрын
Refer to my video on Kubernetes services for this
@pjj7466
@pjj7466 Жыл бұрын
@@DevOpsMadeEasy Please share the link. there any multiple videos in channel.
@thrinathreddy9243
@thrinathreddy9243 Жыл бұрын
Explanation is good, but u kept different different membership levels for different different topics, initially i gone through gold but few videos only I can access for remaining videos it is asking platinum, palladium membership this is not good,this is advantage for you not for us.
@DevOpsMadeEasy
@DevOpsMadeEasy Жыл бұрын
This is old series. Already we have created a new one
@adityahpatel
@adityahpatel 7 ай бұрын
Confused-If we have an on-prem cluster with 10 nodes and we have 1 nginx-ingress-controller, do we need an additional load balancer to route requests across nodes OR its not needed because the balancing is done by the services (which have already deployed pods of our app on multiple nodes)?
@meghrajraee873
@meghrajraee873 6 ай бұрын
I think you don't need to have any additional load-balancer to route requests across nodes, regardless of the number of nodes in the cluster. If your application is not configured with `NodePort` (the de facto use case of ingress controller but you can have one), then the nginx ingress controller is responsible for directing the request to the associated application service, ultimately ending to the application pod. Unlike, loadbalancer which directs the requests to the corresponding service object, where the service load-balance the request to the pod. nginx ingress controller directs the request directly to the corresponding pods instead of just directing to the associated application service and leaving the service to load-balance to its associated pods. Hope, this will help you.
@sumathsingamrockz
@sumathsingamrockz 2 жыл бұрын
Can you let me know do you have any playlist for kubernetes in order ?
@DevOpsMadeEasy
@DevOpsMadeEasy 2 жыл бұрын
Yes it is ij order
@3890mohit
@3890mohit 2 жыл бұрын
Hi. At 22:45 you are not refering to request http headers. That info is only for display purpose. Http req headers are in the below block. Please correct me in case i mwrong
@DevOpsMadeEasy
@DevOpsMadeEasy 2 жыл бұрын
Yes you are true but that displayed info is also correct
@3890mohit
@3890mohit 2 жыл бұрын
At 1:05:45, u have used cluster ip instead of the ip shown in the kubectl get svc command for nginx service? Cant i access using the nginx service ip?
@DevOpsMadeEasy
@DevOpsMadeEasy 2 жыл бұрын
Yes
@DevOpsMadeEasy
@DevOpsMadeEasy 2 жыл бұрын
@@3890mohit ClusterIPs are internal to the cluster. I have used my minikube cluster's IP address and Port on which my Nginx service is exposed as NodePort
@SourajitDrums
@SourajitDrums 2 жыл бұрын
Hello Sir, I have replicated the exact same architecture for path based routing using AKS on Azure and ngnix controller. But when I try to access the application from browser,it keeps giving 404 error page of ngnix. I just cannot figure out why it's not working. Can you please help
@premierde
@premierde Жыл бұрын
Were you able to figure out why ingress nginx thows 404
@premierde
@premierde Жыл бұрын
Verify the path in ing & how have you set rewrite -target.
@premierde
@premierde Жыл бұрын
It does not get redirected, throws 404. ? what is rewrite-target. If cotext-path is set in springboot, It won't work. Why?
@DevOpsMadeEasy
@DevOpsMadeEasy Жыл бұрын
Rewrite target is changing context. If I access ingress controller on the path /signin, it will also use the same path at the app level but assume your app has /login instead of /signin, this is where you change the path which is redirection
@DevOpsMadeEasy
@DevOpsMadeEasy Жыл бұрын
Lets assume you access the ingress controller on path /api/v1 and your app only support /v1 endpoint, we strip off the /api from the request before sending to the app. This is called rewrite target
@yedukondalupeyyala7711
@yedukondalupeyyala7711 7 ай бұрын
@hishamahammmedkm1936
@hishamahammmedkm1936 2 жыл бұрын
link plz
@salmannaqvi3076
@salmannaqvi3076 5 күн бұрын
Awesome explanation - You are a gifted teacher! THANK YOU.
@DevOpsMadeEasy
@DevOpsMadeEasy 5 күн бұрын
You're very welcome!
@harishchavan8580
@harishchavan8580 6 ай бұрын
apache virtual hosting is ingress only
@adinarayanarajukakarlapudi8401
@adinarayanarajukakarlapudi8401 10 күн бұрын
This video given me full knowledge to keep my strong hold on Ingress control, thank you Sir ji
@DevOpsMadeEasy
@DevOpsMadeEasy 5 күн бұрын
Always welcome
@iamsatyap
@iamsatyap 2 жыл бұрын
i need kubernetes full course, can you provide me details
@NikolaNovoselec
@NikolaNovoselec 7 ай бұрын
This was the best tech session I've seen on KZbin. I'll check a few more videos and if the quality is similar I'll definitely join Premium.
@DevOpsMadeEasy
@DevOpsMadeEasy 7 ай бұрын
Thanks
@PriThVi_RedDy
@PriThVi_RedDy 2 жыл бұрын
Hi, Great explanation. Where can we find the code for all these.
@anishsuman1371
@anishsuman1371 Жыл бұрын
Maza aa gya
@SiddharthMuruganandam
@SiddharthMuruganandam 2 ай бұрын
I have a doubt that If there are two ingress different controllers in place and we have one load balancer service in place to which ingress controller that load balancer will route the traffic ?
@abhaytyagi7093
@abhaytyagi7093 2 ай бұрын
You have to create rules inside alb which will pass traffic based on path, url to the respective target group. Target groups will have ingress controllers nodes registered. That's how your alb will get to know when to send request to which ingress controller.
@SiddharthMuruganandam
@SiddharthMuruganandam 2 ай бұрын
@@abhaytyagi7093 Thanks for the response, Understood 🙌
@abhaytyagi7093
@abhaytyagi7093 2 ай бұрын
@@SiddharthMuruganandam great it helped. Just wanted to know, are you a working professional !
@yashhirulkar909
@yashhirulkar909 2 жыл бұрын
sir if we edit the /etc/hosts file of ec2 instance on aws will it work as u showed in this video for domain names ?
@DevOpsMadeEasy
@DevOpsMadeEasy 2 жыл бұрын
yes it will
@nohandsignal
@nohandsignal Жыл бұрын
dear how to check the communication between the pods in two clusters ?? there is a dnsname:9092 in which i can check the connection between a pod in one cluster and dnsname:9092 of another cluster? the thing is i don`t have the curl from the pod cluster and from the dnsname:9092 cluster i do have access to execute curl commands, how to check the connectivity between these to its [kafka to some pod running in other cluster] could you kindly please reply ?
@dmmd5329
@dmmd5329 Жыл бұрын
Thank you a lot! I really appreciate your lessons. How I can support you?
@DevOpsMadeEasy
@DevOpsMadeEasy Жыл бұрын
You are welcome! You can support through memberships :)
@sahild6584
@sahild6584 2 жыл бұрын
Please make in depth video on argocd and if possible series on red hat open shift on aws
@promisepreciousimeh8181
@promisepreciousimeh8181 Жыл бұрын
please can i get the slides? this is truly woooooooooooow. Thank you
@itsme12994
@itsme12994 Жыл бұрын
Awesome explanation 👏
@DevOpsMadeEasy
@DevOpsMadeEasy Жыл бұрын
Thanks
@nohandsignal
@nohandsignal Жыл бұрын
i took two months membership im not able to watch a single video can u say what should i do ?
@DevOpsMadeEasy
@DevOpsMadeEasy Жыл бұрын
Which membership?
@nohandsignal
@nohandsignal Жыл бұрын
@@DevOpsMadeEasy platinum
@DevOpsMadeEasy
@DevOpsMadeEasy Жыл бұрын
Palladium is required for k8s
@yashhirulkar909
@yashhirulkar909 2 жыл бұрын
the best ingress video i have seen till now on youtube. Thankyou sir.
@DevOpsMadeEasy
@DevOpsMadeEasy 2 жыл бұрын
You are welcome :)
What is Service Mesh? Do you need one?
56:34
DevOps Made Easy
Рет қаралды 848
Kubernetes Ingress
26:56
Pavan Elthepu
Рет қаралды 37 М.
Nastya and balloon challenge
00:23
Nastya
Рет қаралды 65 МЛН
Spongebob ate Patrick 😱 #meme #spongebob #gmod
00:15
Mr. LoLo
Рет қаралды 17 МЛН
Миллионер | 1 - серия
34:31
Million Show
Рет қаралды 1,8 МЛН
Самое неинтересное видео
00:32
Miracle
Рет қаралды 2,9 МЛН
Is this the BEST Reverse Proxy for Docker? // Traefik Tutorial
21:57
Christian Lempa
Рет қаралды 520 М.
Day 33/40 - Kubernetes Ingress Tutorial | Ingress Explained by @AbhishekVeeramalla
54:03
John Mearsheimer and Jeffrey Sachs | All-In Summit 2024
54:05
All-In Podcast
Рет қаралды 1,5 МЛН
Eric Weinstein - Are We On The Brink Of A Revolution? (4K)
3:29:15
Chris Williamson
Рет қаралды 6 МЛН
NGINX Tutorial - What is Nginx
14:32
TechWorld with Nana
Рет қаралды 177 М.
Kubernetes Ingress Hands-On Demo | Alta3 Breakdown
20:10
Alta3 Research, Inc.
Рет қаралды 5 М.
Kubernetes Ingress Explained Completely For Beginners - Updated
22:06
Nastya and balloon challenge
00:23
Nastya
Рет қаралды 65 МЛН