Using the Inspektor Gadget Addon

Inspektor Gadget Addon

Inspektor Gadget is a collection of tools (or gadgets) to debug and inspect Kubernetes resources and applications. It manages the packaging, deployment and execution of eBPF programs in a Kubernetes cluster, including many based on BCC tools, as well as some developed specifically for use in Inspektor Gadget. It automatically maps low-level kernel primitives to high-level Kubernetes resources, making it easier and quicker to find the relevant information.

Enable Inspektor Gadget on minikube

To enable this addon, simply run:

minikube addons enable inspektor-gadget

Testing installation

kubectl get pods -n gadget

If everything went well, there should be no errors about Inspektor Gadget’s installation in your minikube cluster.

Disable Inspektor Gadget

To disable this addon, simply run:

minikube addons disable inspektor-gadget

Last modified July 7, 2023: Add addon readmes to website (cf976f6dd)