You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* connect to GCP GKE from local machine
explanation of how to connect from lacal machine to Google Cloud Kubernetes without headache, close#91
* connect to cluster from a local machine
add preferred way of connecting to cluster, add alternative way with proxy for non supported auth providers
* known issues and its workarounds
Copy file name to clipboardExpand all lines: README.md
+24
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,30 @@ cd csharp\examples\simple
46
46
dotnet run
47
47
```
48
48
49
+
## Known issues
50
+
51
+
While preferred way of connecting to a remote cluster from local machine is:
52
+
53
+
```
54
+
var config = KubernetesClientConfiguration.BuildConfigFromConfigFile();
55
+
var client = new Kubernetes(config);
56
+
```
57
+
58
+
Not all auth providers are supported at moment [#91](https://github.com/kubernetes-client/csharp/issues/91#issuecomment-362920478), but you still can connect to cluster by starting proxy:
0 commit comments