aboutsummaryrefslogtreecommitdiff
path: root/home/programs/k9s.nix
blob: 2d60ab19c3b605277dbeddded4d673a15924546d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{ ... }:
{
  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"
          ];
        };
      };
    };
  };
}