Eric Chiang
Eric Chiang
@chancez to the best of my understanding it's a SPDY upgrade, not HTTP/2. @sttts since this client enables HTTP/2 I don't think Go will let the API server hijack the...
This is still open. I haven't had time to dig into how much work it'd be to support, and a lot of the deployments patterns I personally use don't leverage...
What part of the kubeconfig parsing is broken exactly?
My main concern is that we're going to break users using `github.com/ghodss/yaml`. Can we commit the generated config then provide a convince to convert from the generated one to the...
You want https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.13/#create-eviction-pod-v1-core ```go func evictPod(ctx context.Context, c *k8s.Client, namespace, name string) error { var pod corev1.Pod if err := c.Get(ctx, namespace, name, &pod); err != nil { return fmt.Errorf("get...
Ah that's a bug then :) The URL should contain the "{name}" in the path On Mon, Mar 18, 2019, 2:18 PM Mark Vincze wrote: > Hi @ericchiang , >...
I'd recommend shelling out to kubectl or using client-go for now. Supporting YAML and JSON serialization for known manifests isn't easy (https://github.com/ericchiang/k8s/issues/8). I've had the thought of adding a RawResouce,...
> the issue: app should support two different clusters, as example 1.7 and 1.11+ You probably want two different manifest then anyway, right? > yes, I know that we can...
> I love the simplicity of this kubernetes client, but I too am running into this same challenge. Any thoughts on replacing the apis package in this project with kubernetes/api?...
I wasn't aware that you were able to watch an individual instance of a resource. Does this work for things other than endpoints? There's currently no way to do this...