Greetings,
I have a server, within a datacenter, which is supposed to host multiple microk8s clusters.
I’m currently building up the first one.
So here how it goes:
My PC is on 192.168.10.0/24 subnet. The office has a VPN to the Datacenter, my server is on the 192.168.100.0/24 subnet there. All traffic is permitted back and forth through the VPN.
Multipass created the 10.97.142.0/24 subnet for my VMs. I have set up 3 multipass VMs : 1 master node, and 2 worker nodes, so far.
Thing is, once I get the microk8s config and paste it up on my PC (192.168.10.0/24), it does not reach the cluster. Quite normal! the config is set up to reach 10.97.142.0/24 subnet, and the IP of the master node, which my PC know nothing about (and will never will, since we cannot operate on my office nor the datacenter routers).
So, I tried several things:
1- Set up a nginx proxy on the host (192.168.100.0/24) et reroute all traffic coming on 16443 port to the master node VM on this very same port (the microk8s API port from the config)
→ It doesn’t work because the certificate on the nginx proxy doesn’t match the one expected by the API
2- create PREROUTING and FORWARD iptables rules to redirect all 16443 traffic coming on the host to the master node IP
→ it doesn’t work because : Failed to get crds: Kubectl command failed: Unable to connect to the server: x509: certificate is valid for 127.0.0.1, 10.97.142.244, not 192.168.100.56
What should I try next? Is it possible to add another valid IP to the list quoted by the cluster?
Best Regards,