Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change the default TLS to OpenSSL #863

Merged
merged 1 commit into from Mar 31, 2022
Merged

Commits on Mar 31, 2022

  1. Change the default TLS to OpenSSL

    `native-tls` feature exists because `kube` used to depend on `reqwest`.
    
    The feature doesn't make sense for us because all targets still
    depend on `openssl` anyway. This is because `native-tls` requires PKCS#12
    to create `Identity` for authentication with client certificates, and
    `openssl` is the only trusted option to generate them.
    A feature to create `Identity` from PKCS#8 was added a few days ago, but
    `openssl` is still necessary because we need to support more private key
    formats.
    
    `native-tls` feature is currently broken on macOS because Security
    Framework cannot import PKCS#12 generated by OpenSSL v3 (kube-rs#691).
    
    https://openradar.appspot.com/FB8988319
    
    Signed-off-by: kazk <kazk.dev@gmail.com>
    kazk committed Mar 31, 2022
    Copy the full SHA
    0a97484 View commit details
    Browse the repository at this point in the history