Louis DiNatale
04/06/2023, 7:59 PMKetan (kumare3)
04/06/2023, 11:29 PMChirag Gosalia
04/07/2023, 1:00 PMKetan (kumare3)
04/07/2023, 1:10 PMStephanie Marker
04/07/2023, 1:44 PMYee
04/07/2023, 6:45 PMremote_client._client = remote_client.client.with_root_certificate(remote_client.config.platform, "/path/to/cert.cer")
remote_client._client_initialized = True
this will fix that first issue. flytekit doesn’t apply the cert to both place - only when trying to create the channel for auth, not when generally just making calls, which is why it was failing. we should update that but this is the workaround for now. the root cause is that the user is trying to access flyte from a domain different than the one that the cert was generated for, which is why it needs to be passed in. running now into a second issue but suspect it’s unrelated. will report back if not.Chirag Gosalia
04/07/2023, 6:53 PM_InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INTERNAL
details = "Exception serializing request!"
debug_error_string = "None"
Yee
04/07/2023, 7:08 PMLouis DiNatale
04/07/2023, 7:09 PMYee
04/07/2023, 7:24 PMflytectl --admin.caCertFilePath /path/to/cert get projects
Louis DiNatale
04/07/2023, 7:37 PM