Table of Contents
nix flake show "https://flakehub.com/f/andrewthomaslee/kubefetch/*"nix run "https://flakehub.com/f/andrewthomaslee/kubefetch/*" -- --help- Add repo to
flake.nix
{
inputs.kubefetch.url = "https://flakehub.com/f/andrewthomaslee/kubefetch/0.9.1";
outputs = { self, kubefetch }: {
# Use in your outputs
};
}- Add to
systemPackages
{
environment.systemPackages = [
inputs.kubefetch.packages.${pkgs.stdenv.hostPlatform.system}.default
];
}- With
makeClone the repo
git clone https://github.com/andrewthomaslee/kubefetch
cd kubefetch- Build and install the binary
make build
sudo make install- To uninstall, run:
sudo make uninstall
make clean
- Auth via kubeconfig
- AUR package
- Nixpkgs package
- Nix Flake
- More displayed info
- CNI used (currently only detection for Cilium, Calico, WeaveNet and Flannel)
- CRI used
- Storage Solution used
See the open issues for a full list of proposed features (and known issues).
Distributed under the GNU GPL v3 License. See LICENSE.txt for more information.
Project Link: https://github.com/andrewthomaslee/kubefetch


