From 9a0c0795af84a161973e632693ba2c21a4389699 Mon Sep 17 00:00:00 2001 From: William Denniss Date: Mon, 27 Feb 2017 16:36:20 -0800 Subject: [PATCH] Added troubleshooting section to the README. - SSLError on macOS documented. --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index e69f5c352..282d437ee 100644 --- a/README.md +++ b/README.md @@ -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.