Eddie Zaneski

Results 158 comments of Eddie Zaneski

I took a look at this and I think there are two things to solve for here. 1. Determine when the config changes. This appears to be pretty easy. We...

I started working on dropping the extra binary and using the OS keystore. If that winds up not working I wanted to bake everything into a single binary that forks...

Ah that makes sense. What about something like this then? ``` { "uuid": "9b4c44b2f870e6b6745d0a48f9217b3fff9963b35aa849d91c18206d2bf7834f", "entry": { "body": "....", "integratedTime": 1650065823, "logID": "c0d23d6ad406973f9559f3ba2d1ca01f84147d8ffc5b8445c224f98b9591801d", "logIndex": 2021365, "verification": { "signedEntryTimestamp": "..." } }...

> Is there any progress to this? I'm happy to help if needed. Would love help! Right now we're trying to coordinate with the folks in the [wg-securing-software-repos ](https://github.com/ossf/wg-securing-software-repos) to...

I was able to replicate this by creating 100k configmaps. I'll try poking around and see what I can figure out.

I've tracked this down to being a bottleneck here: https://github.com/kubernetes/kubernetes/blob/e422e9a3f41bfdf27c4bd2ebfabff40fe7a8b1e9/staging/src/k8s.io/kubectl/pkg/cmd/get/get.go#L498 Specifically here: https://github.com/kubernetes/kubernetes/blob/e422e9a3f41bfdf27c4bd2ebfabff40fe7a8b1e9/staging/src/k8s.io/cli-runtime/pkg/resource/result.go#L122 Issue is in fact the `chunk-size`. By default it's `500` which means that [this loop](https://github.com/kubernetes/kubernetes/blob/e422e9a3f41bfdf27c4bd2ebfabff40fe7a8b1e9/staging/src/k8s.io/cli-runtime/pkg/resource/selector.go#L55) makes 200...