Sorry for newbie question; I am new to the k8s world.The current way of deploying is to deploy the app on EC2. The new way I am trying to deploy the containerized app to VPC.
In the old way AWS would route the traffic for aaa.bbb.com
to vpc-ip:443
ELB which would further route it to ASG on private subnet:443
and app would work fine.
With k8s in the picture, how does traffic flow look like?
I'm trying to figure out if I could use multiple ports on ELB with respective dns and route traffic to on certain port on worker nodes.
i.e.
xxx.yyy.com -> vpc-ip:443/ -> ec2:443/
aaa.bbb.com -> vpc-ip:9000/ -> ec2:9000/
Is it doable with k8s on the same VPC? Any guidance and links to documentation would be of great help.