sparse-carpenter-66912
04/29/2025, 11:41 AMtls
to my ingress section along with a certificate added to kubectl
.
Now, in my .flyte/config.yaml
I added insecure: false
but I get the following error when running a pyflyte run --remote
command:
"failed to connect to all addresses; last error: UNKNOWN: ipv4:192.168.64.3:443: Ssl handshake failed (TSI_PROTOCOL_FAILURE): SSL_ERROR_SSL: error:1000007d:SSL routines:OPENSSL_internal:CERTIFICATE_VERIFY_FAILED"
jolly-florist-66728
04/29/2025, 11:41 AMvalues.yaml
file for Flyte includes the TLS configuration under the ingress section. This typically looks like:
ingress:
tls:
enabled: true
secretName: <your-tls-secret-name>
This configuration tells Flyte to use the specified TLS secret for securing ingress traffic.
2. Flyte Configuration: In your .flyte/config.yaml
, you need to ensure that the admin
section is configured to use the secure endpoint. This might look like:
admin:
endpoint: "https://<your-flyte-domain>"
authType: Pkce
insecure: false
This configuration ensures that Flyte communicates over HTTPS and does not skip TLS verification.
Would you like more detail on any specific part of this setup?
Sources:
- Flyte Helm Chart Configuration 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.sparse-carpenter-66912
04/29/2025, 11:44 AMtls
to my ingress section along with a certificate added to kubectl
.
Now, in my .flyte/config.yaml
I added insecure: false
but I get the following error when running a pyflyte run --remote
command:
"failed to connect to all addresses; last error: UNKNOWN: ipv4:192.168.64.3:443: Ssl handshake failed (TSI_PROTOCOL_FAILURE): SSL_ERROR_SSL: error:1000007d:SSL routines:OPENSSL_internal:CERTIFICATE_VERIFY_FAILED"
jolly-florist-66728
04/29/2025, 11:44 AMinsecureSkipVerify
: If you are using a self-signed certificate and want to bypass verification for testing purposes, you can set insecureSkipVerify: true
in your .flyte/config.yaml
. This will skip the certificate verification step:
admin:
endpoint: "https://<your-flyte-domain>"
authType: Pkce
insecure: false
insecureSkipVerify: true
3. Check Certificate Details: Ensure that the certificate's Common Name (CN) or Subject Alternative Name (SAN) matches the domain you are using in the endpoint
configuration.
Would you like more detailed guidance on any of these steps?
Sources:
- https://github.com/flyteorg/flyte/issues/4794
- https://www.union.ai/docs/flyte/community/troubleshoot/ 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.sparse-carpenter-66912
04/29/2025, 11:51 AMjolly-florist-66728
04/29/2025, 11:51 AMcurl
or telnet
to see if the server is reachable.
2. Verify Endpoint Configuration: Double-check the endpoint
value in your .flyte/config.yaml
to ensure it is correct and points to the right server address and port. It should match the server's actual address and port.
3. Network Configuration: Ensure that there are no network issues or firewall rules blocking the connection between your client and the Flyte server. If you're running Flyte locally, ensure that the server is bound to the correct network interface.
4. Check Port Configuration: Make sure that the port specified in the endpoint
is open and listening on the server. If you're using a custom port, ensure that it is correctly configured in both the server and client settings.
Would you like more detailed guidance on any of these steps?
Sources:
- https://github.com/flyteorg/flyte/issues/4962
- https://github.com/flyteorg/flyte/issues/5663 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.