Skip to content

Commit

Permalink
Merge pull request kubernetes-client#147 from WilliamDenniss/master
Browse files Browse the repository at this point in the history
Added OpenSSL version requirement to README.
  • Loading branch information
mbohlool authored Mar 14, 2017
2 parents 1e669b5 + 9a0c079 commit e59d594
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,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.

0 comments on commit e59d594

Please sign in to comment.