about summary refs log tree commit diff
path: root/users/glittershark/system/home/modules/development/kube.nix
blob: 97ae4760d43bd3fb37e303629620f864827dec7e (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
{ config, lib, pkgs, ... }:
{
  home.packages = with pkgs; [
    kubectl
    kubetail
    sops
    kubie
    # pkgs-unstable.argocd # provided by urbos
  ];

  programs.zsh.shellAliases = {
    "kc" = "kubectl";
    "kg" = "kc get";
    "kga" = "kc get --all-namespaces";
    "kpd" = "kubectl get pods";
    "kpa" = "kubectl get pods --all-namespaces";
    "klf" = "kubectl logs -f";
    "kdep" = "kubectl get deployments";
    "ked" =  "kubectl edit deployment";
    "kpw" = "kubectl get pods -w";
    "kew" = "kubectl get events -w";
    "kdel" = "kubectl delete";
    "knw" = "kubectl get nodes -w";
    "kev" = "kubectl get events --sort-by='.metadata.creationTimestamp'";

    "arsy" = "argocd app sync --prune";
  };

  home.file.".kube/kubie.yaml".text = ''
    shell: zsh
    prompt:
      zsh_use_rps1: true
  '';
}