Maxime Brunet

Results 76 comments of Maxime Brunet

Ok, no problem, I might do a POC at some point anyway, just to experiment with it

Could you try mounting the config with a `hostPath` volume? ```yaml spec: containers: - name: parca-agent volumeMounts: - mountPath: /boot/config name: kconfig volumes: - name: kconfig hostPath: path: /path/to/kconfig type:...

`/boot` is not mounted in the agent pods, that fixes it (did a quick try :cowboy_hat_face:): ```yaml spec: containers: - name: parca-agent volumeMounts: - mountPath: /boot name: boot volumes: -...

The update has only been partial so far, here's how to make a full one: ```bash # Update Go module go get github.com/aquasecurity/[email protected] go mod tidy # Update Git submodule...

Blocked by #294 Blocked by aya-rs/aya#351

Hey @asubiotto, what about using `runtime.GOMAXPROCS(0)` instead of `runtime.NumCPU()` so users like Parca can use the environment variable to configure it, and potentially automatically match it with the cgroup settings...

Thank you for the replies, it sounds reasonable. I am not familiar enough with LSP and the requirements for a code action, but I have opened mvdan/gofumpt#251 to start the...

> I think the proposed workaround (above) is wrong, won't that turn off all go updates? No, the type in `matchDepTypes` is only used for the `go` property of the...

`depType` is a free-form "tag" that managers can use (which could be non-unique and with different meanings between managers), and a logical AND is applied to `match*`es. So both `"matchManagers":...