-
Notifications
You must be signed in to change notification settings - Fork 10
Description
I was able to succesfully setup a K8S kluster with mixed windows and linux nodes thanks to this guide!
I setup the minikube ingress add-on (nginx) and was able to access services hosted on the linux nodes without issues using their hostname, but if the service is hosted on the windows node, the ingress times out when making the request to the service.
The container works, i can expose it with NodePort or exec into it. But when trying to expose it through the ingress, the ingress shows that a request is made to the ClusterIp assigned to the service (so host routing is working OK) but there must be some networking quirk that prevents the ingress from properly reaching the cluster IP for the container in the windows host.
I am totally lost, and 100% new to K8S but I believe this might be an issue considering that the project's main walkthrough does not use ingress to expose the service but a LoadBalancer service.