Hi team :wave: Is it possible to deploy Flyte (I'm...
# flyte-deployment
f
Hi team 👋 Is it possible to deploy Flyte (I'm using
flyte-binary
) in a way that GRPC Ingress and HTTP(s) Ingress will be under DIFFERENT HOSTS? It's not a question how to configure that, because I can just disable Ingress creation in the chart and write my own ingress. It's more of a question: "is it possible to configure the client/flytectl to work in this setup?"
a
if you set
ingress.separateGrpcIngress: true
it will configure different services for grpc and http. Right, you'd need to disable ingress creation from the Flyte chart (because it will configure the same host for both) but from a custom Ingress config you could do it. The CLI clients interact with the gRPC endpoint only so you'd point your config file to the gRPC host
f
Yes, but when I point flytectl to my gRPC endpoint, the URL displayed after the workflow is launched for execution points to invalid host (the gRPC one). Anyway, I've resolved this in another way, so that's no longer needed. Thanks!
a
the URL displayed after the workflow is launched for execution points to invalid host (the gRPC one)
right this is the default behavior, but you can just go to the URL host in your browser and console should be there