Revision 1defd4c01a35a5f37f7d796efc85b2894ae4d587 authored by Marco Hofstetter on 12 June 2024, 15:12:57 UTC, committed by Julian Wiedmann on 17 June 2024, 16:35:54 UTC
Currently, IPAM gets registered as debuginfo statusobject before it
gets initialized.

This is visible when displaying the debuginfo from within an agent pod.

```
cilium-dbg statusinfo

...

<nil>

...
```

After moving the initialization of IPAM into it's own cell, IPAM is fully initialized
at that point in time. The problem is that with the added dependencies it seems as the
output is way too big and results in memory issues (also results in failing tests due to
OOM on GitHub).

Therefore, this commit removes the registration of IPAM to the debuginfo (and the related
implementation of the interface in IPAM). This shouldn't be an issue as it seems that this
was no longer part of the debuginfo output for quite some time.

Signed-off-by: Marco Hofstetter <marco.hofstetter@isovalent.com>
1 parent 4a36fe9
History
File Mode Size
README.md -rw-r--r-- 1.6 KB
nvim-dap.lua -rw-r--r-- 1.7 KB

README.md

back to top