I posted the issue related to flyte - multi-cluste...
# ask-the-community
a
I posted the issue related to flyte - multi-cluster deployment in #azure-wg. The error we are facing now in deployment of flytepropeller in another cluster. We followed this documentation : https://docs.flyte.org/en/latest/deployment/deployment/multicluster.html#data-plane-deployment The error that we are seeing in the pod logs of flytepropeller is:
Copy code
"json":{"src":"client.go:183"},"level":"error","msg":"failed to initialize token source provider. Err: failed to fetch auth metadata. Error: rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup flyteadmin on 10.255.0.10:53: no such host\"","ts":"2023-08-22T17:25:45Z"}
d
HI @Anant Mital can you check the
admin
section in your
flytepropeller
configmap and make sure that's pointing to the right flyteadmin endpoint?
Copy code
configmap:
  admin:
    admin:
      endpoint: <your-flyte-service:81>
a
This is resolved now. Thanks for your response.