Eric Chiang
Eric Chiang
> when you insert a key do you see the dialog asking to pair it ? or does it show in the list of smartcards ? This is on a...
If you'd like to send a PR with associated that adds the following API I'd be happy to take it. ``` func (y *YubiKey) ID() (string, error) func (y *YubiKey)...
I'm less clear about what CCC would be used for. Will have to read more.
Also would CHUID be better in the Metadata struct? I always imagined that would expand to hold a lot of these optional fields that aren't required to actually use the...
Sorry for ghosting #67 :( I don't have a ton of bandwidth for this project but I should have left a comment. I'm a little lost on what CHUID/CCC are....
> Do you know if there is an existing tool that checks for changes in public interfaces? I couldn't find any. @caesarxuchao Go has some internal tooling used to track...
What yaml library are you using? Can you share a reproducible test case?
I'd recommend using github.com/ghodss/yaml if you want this conversion. As you may have noticed, this client doesn't support things like auth providers too. Full kubeconfig loading is black magic that's...
To your specific question, you'd do something like: ```go var d appsv1.Deployment if err := client.Get(ctx, "my-namespace", "my-deployment", &d); err != nil { // Handle error } d.Spec.Replicas = k8s.Int32(10)...
I'm actually struggling to find a spec on how attach is implemented. Do you have any links in the core repo?