<#CP2HDHKE1|ask-the-community> Hi all, I managed t...
# ask-the-community
a
#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
insecure: true
why could you not port forward the service out of curiosity?
a
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
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 &