2022-10-23 21:22:14 +02:00
|
|
|
{ config, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
programs.k9s = {
|
|
|
|
enable = true;
|
|
|
|
package = config.lib.test.mkStubPackage { };
|
|
|
|
|
|
|
|
settings = {
|
|
|
|
k9s = {
|
|
|
|
refreshRate = 2;
|
|
|
|
maxConnRetry = 5;
|
|
|
|
enableMouse = true;
|
|
|
|
headless = false;
|
|
|
|
};
|
|
|
|
};
|
2023-11-01 18:40:14 +01:00
|
|
|
hotkey = {
|
|
|
|
hotKey = {
|
|
|
|
shift-0 = {
|
|
|
|
shortCut = "Shift-0";
|
|
|
|
description = "Viewing pods";
|
|
|
|
command = "pods";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2022-10-23 21:22:14 +02:00
|
|
|
skin = {
|
|
|
|
k9s = {
|
|
|
|
body = {
|
|
|
|
fgColor = "dodgerblue";
|
|
|
|
bgColor = "#ffffff";
|
|
|
|
logoColor = "#0000ff";
|
|
|
|
};
|
|
|
|
info = {
|
|
|
|
fgColor = "lightskyblue";
|
|
|
|
sectionColor = "steelblue";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2023-11-02 07:51:00 +01:00
|
|
|
aliases = { alias = { pp = "v1/pods"; }; };
|
|
|
|
plugin = {
|
|
|
|
plugin = {
|
|
|
|
fred = {
|
|
|
|
shortCut = "Ctrl-L";
|
|
|
|
description = "Pod logs";
|
|
|
|
scopes = [ "po" ];
|
|
|
|
command = "kubectl";
|
|
|
|
background = false;
|
|
|
|
args =
|
|
|
|
[ "logs" "-f" "$NAME" "-n" "$NAMESPACE" "--context" "$CLUSTER" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
views = {
|
|
|
|
k9s = {
|
|
|
|
views = {
|
|
|
|
"v1/pods" = {
|
|
|
|
columns = [ "AGE" "NAMESPACE" "NAME" "IP" "NODE" "STATUS" "READY" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2022-10-23 21:22:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.config/k9s/config.yml
|
|
|
|
assertFileContent \
|
|
|
|
home-files/.config/k9s/config.yml \
|
|
|
|
${./example-config-expected.yml}
|
|
|
|
assertFileExists home-files/.config/k9s/skin.yml
|
|
|
|
assertFileContent \
|
|
|
|
home-files/.config/k9s/skin.yml \
|
|
|
|
${./example-skin-expected.yml}
|
2023-11-02 07:51:00 +01:00
|
|
|
assertFileExists home-files/.config/k9s/hotkey.yml
|
2023-11-01 18:40:14 +01:00
|
|
|
assertFileContent \
|
|
|
|
home-files/.config/k9s/hotkey.yml \
|
|
|
|
${./example-hotkey-expected.yml}
|
2023-11-02 07:51:00 +01:00
|
|
|
assertFileExists home-files/.config/k9s/aliases.yml
|
|
|
|
assertFileContent \
|
|
|
|
home-files/.config/k9s/aliases.yml \
|
|
|
|
${./example-aliases-expected.yml}
|
|
|
|
assertFileExists home-files/.config/k9s/plugin.yml
|
|
|
|
assertFileContent \
|
|
|
|
home-files/.config/k9s/plugin.yml \
|
|
|
|
${./example-plugin-expected.yml}
|
|
|
|
assertFileExists home-files/.config/k9s/views.yml
|
|
|
|
assertFileContent \
|
|
|
|
home-files/.config/k9s/views.yml \
|
|
|
|
${./example-views-expected.yml}
|
2022-10-23 21:22:14 +02:00
|
|
|
'';
|
|
|
|
}
|