Nandakumar Raghu
05/13/2023, 7:10 PMkubectl get pods -n <my-namespace>
2. When I run kubectl get svc -n <my-namespace>
I see three services instead of one flyte-binary service -
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
flyte-backend-flyte-binary-grpc ClusterIP 10.100.105.242 <none> 8089/TCP 33m
flyte-backend-flyte-binary-http ClusterIP 10.100.202.80 <none> 8088/TCP 33m
flyte-backend-flyte-binary-webhook ClusterIP 10.100.196.242 <none> 443/TCP 33m
I am following this simple cloud deployment. When I try to port-forward any of the three services, the kubectl command times out. kubectl get events
does not show anything related to flyte.Yee
David Espejo (he/him)
05/15/2023, 3:25 PMRunning
? It's weird that it created the services and not the Pod.
Regarding #2 yes, recent chart versions create separate services, this was needed to meet the requirements of some ingress controllers that have specific annotation for each type of traffic (gRPC, http,etc)Nandakumar Raghu
05/17/2023, 7:11 PM