tvl-depot/users/glittershark/system/home/modules/development/kube.nix

35 lines
825 B
Nix
Raw Normal View History

2020-04-28 20:36:57 +02:00
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
kubectl
kubetail
sops
kubie
2020-05-07 16:57:36 +02:00
# pkgs-unstable.argocd # provided by urbos
2020-04-28 20:36:57 +02:00
];
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";
2020-06-15 17:54:17 +02:00
"kev" = "kubectl get events --sort-by='.metadata.creationTimestamp'";
2020-04-28 20:36:57 +02:00
"arsy" = "argocd app sync --prune";
};
home.file.".kube/kubie.yaml".text = ''
shell: zsh
prompt:
zsh_use_rps1: true
'';
}