34 lines
1.1 KiB
Nix
34 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, lib, ... }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "kubetail";
|
|
version = "1.6.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "johanhaleby";
|
|
repo = "kubetail";
|
|
rev = version;
|
|
sha256 = "0hayfd7yvdhd2klfmhvl04hfqk0nfsimjyg3kbq8c5dbgbpz05nd";
|
|
};
|
|
|
|
installPhase = ''
|
|
install -Dm755 kubetail "$out/bin/kubetail"
|
|
install -Dm755 completion/kubetail.bash "$out/share/bash-completion/completions/kubetail"
|
|
install -Dm755 completion/kubetail.fish "$out/share/fish/vendor_completions.d/kubetail.fish"
|
|
install -Dm755 completion/kubetail.zsh "$out/share/zsh/site-functions/_kubetail"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Bash script to tail Kubernetes logs from multiple pods at the same time";
|
|
longDescription = ''
|
|
Bash script that enables you to aggregate (tail/follow) logs from
|
|
multiple pods into one stream. This is the same as running "kubectl logs
|
|
-f " but for multiple pods.
|
|
'';
|
|
homepage = "https://github.com/johanhaleby/kubetail";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ kalbasit ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|