Nicolas Busseneau

Results 100 comments of Nicolas Busseneau

Hey, sorry again for the delay in answering. Thank you for the commits. The fact that it disables search engines on failures is expected and by design, as the plugin...

> The rest should certainly not disable the search engines, because it is most probably a temporary server-side issue. Even with a login issue, it is possible that a user's...

> I've not noticed any CloudFlare issues lately, but then again I am using my modification, so I would not notice probably. Yeah I think Cloudflare was removed because I...

Thanks for the PR! I actually didn't know about `__COMPAT_LAYER`, otherwise I'd have done that in the first place!! :D I don't think I will have time for a proper...

Sorry, I did not take the time required to properly test this PR nor integrate it. Is that feature something you'd need?

Preliminary investigation indicates the errors occurs when calling `clientcmd` here: https://github.com/ahmetb/kubectx/blob/401188fefd4fa3dcd94ee6a8eb1bb1efbff04b25/cmd/kubens/list.go#L61 So perhaps this actually is a bug for https://github.com/kubernetes/client-go/?

Yes, works fine with `kubectl` no matter the current working dir. Here are examples from the documentation where you can see how a config can include client certificates and/or CA...

> Is it possible you move these kubeconfig file + cert files to %USERPROFILE%.kube\ and run `kubens.exe` directly from cmd.exe or powershell? I'm not sure I understand the question, but...

I have taken a quick look at `clientcmd` and it looks like [BuildConfigFromFlags](https://github.com/kubernetes/client-go/blob/f099a72e140ab46a70ceb9337c75802c3a2be045/tools/clientcmd/client_config.go#L553) is a good candidate for loading config files. There actually is an example provided by Go client:...

> It is ––except it double-reads the file. We already read it in-memory once for detailed YAML doc tree parsing, if we use that it’ll parse the file yet again....