Mac Chaffee

Results 60 comments of Mac Chaffee

The caching happens at the cluster scope regardless of whether the `Get` is namespace-scoped because the cache config is not namespace-scoped. When creating the Manager here: https://github.com/fluxcd/helm-controller/blob/a2147639031eb1362360b52c6f596c066270ecc4/main.go#L113 no namespace is...

I have `--watch-all-namespaces=true` because Flux's utility is limited if you can only deploy to in one namespace. Someone who only wants to use Flux in a "dev" and a "prod"...

I think I might be experiencing this issue as well. Tcpdump can be found here: https://github.com/mac-chaffee/APSVIZ-Supervisor/actions/runs/3010474179 But I make less connections than the Dapr folks (less than 100 total new...

Hmm very interesting, thanks for clarifying! Yes I control the destination network, no firewalls or DDoS protection. Essentially just a router and a switch straight to a physical machine. A...

I've since just disabled NFD, but I'm 99% certain this isn't some ephemeral k8s bug. Kubelet still uses this utility to update confimaps periodically: https://github.com/kubernetes/kubernetes/blob/3ffdfbe286ebcea5d75617da6accaf67f815e0cf/pkg/volume/util/atomic_writer.go And unless something's changed in...

Also I did test-driven development for #806, so if that test still fails when run against the latest version of nfd, then the bug still exists since the test simulates...

Yeah I got the conditional backwards (copy/paste error). Was wondering why it wasn't working when I tested it haha Although now that I flipped the conditional, editing the configmap seems...

Viper seems to be able to detect file changes: https://github.com/spf13/viper/blob/65293ecec2f2d7237de9261f637c42d451f94a3d/viper.go#L431 I had just forgotten that configmaps are actually mounted as symlinks and renamed instead of re-written, that was why my...

I can try to fiddle around with this a little more to hopefully save us the CPU of checksumming every loop, but will resort to that if it gets too...

/unhold I changed the implementation to check the modification time of files instead of trying to filter fsnotify events, which proved to be a little too complex. I figure checking...