blob: 2d60ab19c3b605277dbeddded4d673a15924546d (
plain) (
tree)
|
|
{ ... }:
{
programs.k9s = {
enable = true;
settings = {
k9s = {
refreshRate = 1;
};
};
plugin = {
plugins = {
log-bat = {
shortCut = "Shift-L";
description = "Logs (bat)";
scopes = [ "po" ];
command = "bash";
background = false;
args = [
"-c"
"\"$@\" | bat"
"dummy-arg"
"kubectl"
"logs"
"$NAME"
"-n"
"$NAMESPACE"
"--context"
"$CONTEXT"
"--kubeconfig"
"$KUBECONFIG"
];
};
log-bat-container = {
shortCut = "Shift-L";
description = "Logs (bat)";
scopes = [ "containers" ];
command = "bash";
background = false;
args = [
"-c"
"\"$@\" | bat"
"dummy-arg"
"kubectl"
"logs"
"-c"
"$NAME"
"$POD"
"-n"
"$NAMESPACE"
"--context"
"$CONTEXT"
"--kubeconfig"
"$KUBECONFIG"
];
};
};
};
};
}
|