-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
hi @JanKoehnlein I suspect that the issue might be related to the hosts.configuration.baseHost value. Specifically, ssli.io is a public DNS service that dynamically maps raw IP addresses to domain names. Since the LAN is not connected to the internet, this DNS service may not function properly. To address this, I tried setting 192.168.0.200 192.168.0.200.sslip.io in the /etc/hosts file, but it didn’t resolve the issue. I also attempted using nip.io, but that didn’t work either. Have you ever dealt with a similar situation on a LAN? What possible value could I use for hosts.configuration.baseHost in this environment? Note that the baseHost value must be a DNS name and cannot be an IP address, so setting an IP directly is not an option. |
Beta Was this translation helpful? Give feedback.



hi @JanKoehnlein
I solve the problem on LAN, when deploying on LAN, kubernetes uses coredns as DNS server, but the default corefile can not resolve 192.168.0.200.sslip.io , so we need to add it to the corefile
kubectl edit configmap coredns -n kube-system
kubectl delete pod -n kube-system -l k8s-app=kube-dns