https://flyte.org logo
#ask-the-community
Title
# ask-the-community
a

Ashika UMAGILIYA

09/12/2023, 2:01 AM
#ask-the-community Hi all, I managed to setup a simple Flyte cluster on GCP following the tutorial: https://docs.flyte.org/en/latest/deployment/deployment/cloud_simple.html I couldn't portmap the service as explained in the document, so portwarded pod:
Copy code
kubectl -n flyte port-forward flyte-backend-flyte-binary-5876c5745b-hhtrd 8088:8088 8089:8089
I can access the Flyte UI on http://localhost:8088/console My config is as follows:
Copy code
admin:
  # For GRPC endpoints you might want to use dns:///flyte.myexample.com
  endpoint: dns:///localhost:8088
  authType: Pkce
  insecure: false
logger:
  show-source: true
  level: 0
When I try to run the example workflow, its gives following error ? Any idea to resolve this ?
y

Yee

09/12/2023, 2:28 AM
insecure: true
why could you not port forward the service out of curiosity?
a

Ashika UMAGILIYA

09/12/2023, 5:41 AM
there are 3 services , but the instruction to portforward is
Copy code
kubectl -n flyte port-forward service/flyte-binary 8088:8088 8089:8089
@Yee with
insecure:true
, getting this error
telneting works though
Do I need gRPC for the CLI ? If so need SSL?
p

Peter Klingelhofer

09/12/2023, 7:38 PM
Hi @Ashika UMAGILIYA, maybe try this?
Copy code
kubectl -n flyte port-forward service/flyte-binary-http 8088:8088 & \
kubectl -n flyte port-forward service/flyte-binary-grpc 8089:8089 &