Andrew Korzhuev
10/20/2022, 3:11 PMError: rpc error: code = Unavailable desc = connection error: desc = "transport: Error while dialing dial tcp ...:81: i/o timeout"
panic: authentication error! Original Error: rpc error: code = Unauthenticated desc = token parse error [JWT_VERIFICATION_FAILED] Could not retrieve id token from metadata, caused by: rpc error: code = Unauthenticated desc = Request unauthenticated with IDToken, Auth Error: failed to initialized token source provider. Err: failed to fetch auth metadata. Error: rpc error: code = Unavailable desc = connection error: desc = "transport: Error while dialing dial tcp ...:81: i/o timeout"
Could this be related to auth config? And if so where do I look to fix it?Kevin Su
10/20/2022, 5:51 PMPrafulla Mahindrakar
10/20/2022, 6:31 PMkubectl get cm -n flyte flyscheduler
and check the admin section . That endpoint should be reachable inorder for scheduler to be able to send requests to admin .
Check if something is misconfigured here or admin is down.Andrew Korzhuev
10/21/2022, 8:37 AMpanic: rpc error: code = Unauthenticated desc = transport: per-RPC creds failed due to error: oauth2: cannot fetch token: 401 Unauthorized
Response: {"error":"invalid_client","error_description":"Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method)."}
Prafulla Mahindrakar
10/21/2022, 9:36 AMadminOauthClientCredentials
if this is configured for your helm chartsAndrew Korzhuev
10/24/2022, 12:52 PMadminOauthClientCredentials.clientSecret
also needs to match appAuth.selfAuthServer
section, which is not documentedPrafulla Mahindrakar
10/25/2022, 10:19 AM