Hi Everyone ... I am receiving following error in ...
# flyte-support
l
Hi Everyone ... I am receiving following error in flyte.
Copy code
Running Execution on Remote.
E0805 10:34:02.379989450 3110954 <http://ssl_transport_security.cc:1653]|ssl_transport_security.cc:1653]>       Handshake failed with fatal error SSL_ERROR_SSL: error:1000007d:SSL routines:OPENSSL_internal:CERTIFICATE_VERIFY_FAILED.
RPC Failed, with Status: StatusCode.UNAVAILABLE
        details: failed to connect to all addresses; last error: UNKNOWN: ipv4:10.6.74.230:443: Ssl handshake failed: SSL_ERROR_SSL: error:1000007d:SSL routines:OPENSSL_internal:CERTIFICATE_VERIFY_FAILED
        Debug string UNKNOWN:Error received from peer  {grpc_message:"failed to connect to all addresses; last error: UNKNOWN: ipv4:10.6.74.230:443: Ssl handshake failed: SSL_ERROR_SSL: error:1000007d:SSL routines:OPENSSL_internal:CERTIFICATE_VERIFY_FAILED", grpc_status:14, created_time:"2024-08-05T10:34:02.380439646+02:00"}
<_InactiveRpcError of RPC that terminated with:
        status = StatusCode.UNAVAILABLE
        details = "failed to connect to all addresses; last error: UNKNOWN: ipv4:10.6.74.230:443: Ssl handshake failed: SSL_ERROR_SSL: error:1000007d:SSL routines:OPENSSL_internal:CERTIFICATE_VERIFY_FAILED"
        debug_error_string = "UNKNOWN:Error received from peer  {grpc_message:"failed to connect to all addresses; last error: UNKNOWN: ipv4:10.6.74.230:443: Ssl handshake failed: SSL_ERROR_SSL: error:1000007d:SSL routines:OPENSSL_internal:CERTIFICATE_VERIFY_FAILED", grpc_status:14, created_time:"2024-08-05T10:34:02.380439646+02:00"}"
My Flyteconsole is working fine but pyflyte isn't working as it was before. I changed the environment and created new one and install flytekit in it. and after that I am receiving this error. In previous environment , Everything is working fine, I mean authentication is done successfully at every end and no error logs i see in any pods but it still didn't generate the flyteconsole link after running pyflyte run --remote workflows/main.py wf command. It just quit after Running Execution on Remove. Can you please tell me if anything I can do in solving it and where should I start my debugging process
a
Hey Devendra So for this new installation, are you using the same hostname? I think you could workaround the problem for now setting something like this in the
config.yaml
Copy code
admin:
   ...
   insecure: false
   insecureSkipVerify: true
If it works then you need to validate that your certificate is not pointing to data that doesn't match your new environment, like IP addresses or hostnames
l
No Actually I am receiving that error with this options written. admin: endpoint: dns:///<ingress hostname> insecure: false insecureSkipVerify: true authType: DeviceFlow logger: show-source: true level: 6 This is my config file