Skip to content

Commit e59d594

Browse files
authored
Merge pull request #147 from WilliamDenniss/master
Added OpenSSL version requirement to README.
2 parents 1e669b5 + 9a0c079 commit e59d594

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,3 +87,25 @@ Participation in the Kubernetes community is governed by the [CNCF Code of Condu
8787
This is a [Kubernetes Incubator project](https://github.com/kubernetes/community/blob/master/incubator.md).
8888

8989
* [SIG: sig-api-machinery](https://github.com/kubernetes/community/tree/master/sig-api-machinery)
90+
91+
92+
## Troubleshooting
93+
94+
### SSLError on macOS
95+
96+
If you get an SSLError, you likely need to update your version of python. The
97+
version that ships with macOS may not be supported.
98+
99+
Install the latest version of python with [brew](https://brew.sh/):
100+
101+
```
102+
brew install python
103+
```
104+
105+
Once installed, you can query the version of OpenSSL like so:
106+
107+
```
108+
python -c "import ssl; print ssl.OPENSSL_VERSION"
109+
```
110+
111+
You'll need a version with OpenSSL version 1.0.0 or later.

0 commit comments

Comments
 (0)