Michael Younkin

Results 29 comments of Michael Younkin

Yes, it did correctly show the IP on the target list as draining as soon as I requested deregistration. And when it was removed from the target list, it also...

I think the controller should automatically add a preStop hook to pods, which waits until the controller indicates it is safe to start terminating. That would nip this in the...

Is there some reason why `tpl` isn't documented? It is one of the most useful and important functions IMO. :)

Hey, I just want to add an explanation for why I think supporting `go test all` is important: `go test all` allows us to verify that dependencies, especially child dependencies,...

If you're interested in another viewpoint: > Implement `As` on `*Status` That seems like a random but helpful feature. I agree with waiting on this one until it's clearly worth...

@dfawley Yeah without making a breaking change, I'm not sure you need to make any code changes. It is trivial to fetch the status object (and associated info) manually: ```go...

Yes, unfortunately I think that just wraps golangci-lint so it implements the LSP protocol, but it still only actually runs golangci-lint when files are saved. I'm not sure it is...

I'm trying to understand why this feature is needed. Couldn't you set `skip-nodes-with-local-storage: false` so the default is to evict regardless of empty dir usage, and then set `cluster-autoscaler.kubernetes.io/safe-to-evict: false`...

For this use case, I've found I usually want something more generic, like ``` func joinRepeated(s, sep string, n int) string { var buf strings.Builder for i := 0; i...

I'm not sure I understand. I'm pretty sure the way most people use Docker is they build the image and tag it once. They don't rebuild and change the tag....