Health check working on grpcurl but error on tctl

Hi Everyone,

Currently im evaluating temporal io for my future project, im having trouble with deployment in kubernetes,

and based some forum post we can health check directly using grpcurl, but it is not working with tctl, also my worker cant connect to frontend server,

are there any pointer on this problem?

thank you!

1 Like

managed to connect to my frontend server using this connection option:

	c, err := client.Dial(client.Options{
		HostPort: "frontend-temporal.pawonmburi.com:443",
		ConnectionOptions: client.ConnectionOptions{
			TLS: &tls.Config{},
		},
	})

thanks!

2 Likes