John Howard

Results 1671 comments of John Howard

In the GAMMA meeting we had some consensus to use the echo server/client Istio is using and move/package it in an Istio agnostic way for use by the gateway-api.

Any thoughts on SealedSecret as an alternative? Seems more gitops friendly

My think was that external secret is really only marginally different than a developer doing `kubectl apply`. Now they are just doing `gcloud secret create` - same opaqueness as apply...

I feel like you could say the same about SealedSecret though... * if someone accidentally changed the value in ~GCP~K8s the secrets values can still be recovered (from git) *...

@chaodaiG I think you can fetch the pubkey once and store in git. Then a dev experience to add a secret or update would be `kubeseal mysecret --key pubkey.crt >...

https://bugs.chromium.org/p/chromium/issues/detail?id=749077 seems very related

I ran into the same issue. In my case I didn't really care what version of glibc was used, I just want it to work. I was cross compiling amd64...

Works with this go.mod: ``` module github.com/tombergan/goheapdump go 1.17 require golang.org/x/debug v0.0.0-20180118183051-0e7800198c33 ```

This currently is still pretty broken for us. While we can get it working by moving the comment inline (`"foo.bar" // my comment`), this is not auto-fixed so we end...

`goimports` is a requirement for our use cases