Connect to temporal-frontend from an external worker

Hello,

I installed the helm chart using this command on my minkube node

helm install \
		--repo https://go.temporal.io/helm-charts \
		--set server.replicaCount=1 \
		--set cassandra.config.cluster_size=1 \
		--set elasticsearch.replicas=1 \
		--set prometheus.enabled=false \
		--set grafana.enabled=false \
		--set server.config.namespaces.create=true \
		--set server.frontend.ingress.enabled=true \
		--set server.frontend.ingress.hosts={temporal.frontend} \
		--set server.frontend.service.type=NodePort \
		temporal temporal \
		--timeout 15m

I am also running

sudo minikube tunnel

When I add ingress endpoint and host to /etc/hosts,

ping temporal.frontend

return timeout

When I add 127.0.0.1 endpoint and host to /etc/hosts, ping works but curl returns

HTTP/0.9 recieved when not allowed

Temporal worker returns this error when connecting

RuntimeError: Failed client connect: `get_system_info` call error after connection: Status { code: Internal, message: "h2 protocol error: http2 error", source: Some(tonic::transport::Error(Transport, hyper::Error(Http2, Error { kind: GoAway(b"", PROTOCOL_ERROR, Library) }))) }

Any help is appreciated.
Cheers