Comment on Multiple Kubernetes Services Using Same Port Without SNI
lemmyng@lemmy.ca 2 months agoYeah, you’d have a LoadBalancer service for Traefik which gets assigned a VIP outside the cluster.
Comment on Multiple Kubernetes Services Using Same Port Without SNI
lemmyng@lemmy.ca 2 months agoYeah, you’d have a LoadBalancer service for Traefik which gets assigned a VIP outside the cluster.
wireless_purposely832@lemmy.world 2 months ago
I’m already doing that, but just for one VIP. I think I just need to get the additional VIPs working.
I know that I will need to update my local network’s DNS so that something like service#1 = git.ssh.local.domain and git.ssh.local.domain = 192.168.50.10 and service#2 = sftp.local.domain and sftp.local.domain = 192.168.50.20. I would setup 192.168.50.10 as the load balancer IP address to Forgejo’s SSH entrypoint and 192.168.50.20 as the load balancer IP address to the SFTP’s entrypoint. However, how would I handle requests/traffic received externally? The router/firewall would receive everything and can port forward port 22 to a single IP address, which would prevent one (or more) service from being used externally, correct?