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
Instead of using kubectl and docker CLIs, switch to compiling against the official APIs instead. This will eliminate the prerequisites and at least in the case of Kubernetes, increase performance as (I assume) we'd be able to reuse a single or small set of TCP connections for each request rather than calling kubectl each time which will create new TCP connections to the API server for every request. It will also reduce the headache associated with leaky processes which is particularly annoying on Windows (and really not implemented at this point).
The text was updated successfully, but these errors were encountered:
Instead of using
kubectl
anddocker
CLIs, switch to compiling against the official APIs instead. This will eliminate the prerequisites and at least in the case of Kubernetes, increase performance as (I assume) we'd be able to reuse a single or small set of TCP connections for each request rather than callingkubectl
each time which will create new TCP connections to the API server for every request. It will also reduce the headache associated with leaky processes which is particularly annoying on Windows (and really not implemented at this point).The text was updated successfully, but these errors were encountered: