Skip to content

Commit 9a0c079

Browse files
Added troubleshooting section to the README.
- SSLError on macOS documented.
1 parent c85b8f5 commit 9a0c079

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
@@ -85,3 +85,25 @@ Participation in the Kubernetes community is governed by the [CNCF Code of Condu
8585
This is a [Kubernetes Incubator project](https://github.com/kubernetes/community/blob/master/incubator.md).
8686

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

0 commit comments

Comments
 (0)