Eric Chiang

Results 121 comments of Eric Chiang

I took a crack at this and couldn't get watch on an individual configmap working https://github.com/ericchiang/k8s/pull/108 The docs do say that this should work though... https://v1-9.docs.kubernetes.io/docs/reference/generated/kubernetes-api/v1.9/#watch-210 Going to try to...

Would you mind adding a test for resourceFromSelflink? If not I can.

There's no workaround. Happy to accept PRs if someone get's to this before I do.

none yet. I still need to get a cluster up so I can test #21

For reference, go-piv has supported ECDH backed by a YubiKey for a while now: https://pkg.go.dev/github.com/go-piv/piv-go/piv?utm_source=godoc#ECDSAPrivateKey.SharedKey I don't think crypto/ecdh is the place to support this? E.g. crypto/rsa and crypto/ecdsa don't...

Going to copy and past a comment I added over in #763 > Might be something that can be implemented out of scope of dex. E.g. user logs into app...

When this package was written, I believe that that was the only way to renew a certificate. If there have been updates to ACME/Bolder that allow using the serial number,...

While this may be how blouder works I don't think it's part of the [ACME spec](https://ietf-wg-acme.github.io/acme/#rfc.section.6.7). The spec only refers to > If the CA decides to issue a certificate,...

It's in the certificate request: https://godoc.org/github.com/ericchiang/letsencrypt#CertificateResponse Though maybe it's time to implement the proof of possession challenge as it might be an easier way to get a new certificate. Does...

https://github.com/golang/go/issues/57419 is another issue that appears to be caused by go.dev/cl/451735 Reproducer: ``` package main // #cgo darwin LDFLAGS: -framework PCSC // #include // #include import "C" import "fmt" func...