Installs clang and llvm, and on top Cilium's bpf2go.
"features": {
"ghcr.io/thediveo/devcontainer-features/go-ebpf:0": {}
}
Options Id | Description | Type | Default Value |
---|---|---|---|
bfp2go-version | version of bpf2go to install | string | latest |
ms-vscode.cpptools-extension-pack
Depending on what your eBPF is doing inside the devcontainer (or inside a container inside your devcontainer), consider deploying your devcontainer in the root PID namespace, as follows:
"runArgs": [
"--pid=host"
]
Otherwise, your eBPF programs see root PID namespace PIDs and TIDs, but your user space code sees child PID namespace PIDs and TIDs, ensuring an endless supply of surprise.
Tested with:
- ghcr.io/almalinux/almalinux,
- mcr.microsoft.com/devcontainers/base:debian,
- fedora,
- mcr.microsoft.com/devcontainers/base:ubuntu.
@cilium for their incredibly useful ebpf Go module.
Note: This file was auto-generated from the devcontainer-feature.json. Add additional notes to a NOTES.md
.