File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -85,3 +85,25 @@ Participation in the Kubernetes community is governed by the [CNCF Code of Condu
85
85
This is a [ Kubernetes Incubator project] ( https://github.com/kubernetes/community/blob/master/incubator.md ) .
86
86
87
87
* [ 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.
You can’t perform that action at this time.
0 commit comments