Added troubleshooting section to the README.

- SSLError on macOS documented.
This commit is contained in:
William Denniss 2017-02-27 16:36:20 -08:00 committed by William Denniss
parent c85b8f5733
commit 9a0c0795af

View File

@ -85,3 +85,25 @@ Participation in the Kubernetes community is governed by the [CNCF Code of Condu
This is a [Kubernetes Incubator project](https://github.com/kubernetes/community/blob/master/incubator.md).
* [SIG: sig-api-machinery](https://github.com/kubernetes/community/tree/master/sig-api-machinery)
## Troubleshooting
### SSLError on macOS
If you get an SSLError, you likely need to update your version of python. The
version that ships with macOS may not be supported.
Install the latest version of python with [brew](https://brew.sh/):
```
brew install python
```
Once installed, you can query the version of OpenSSL like so:
```
python -c "import ssl; print ssl.OPENSSL_VERSION"
```
You'll need a version with OpenSSL version 1.0.0 or later.