tvl-depot/users/glittershark/system/home/modules/development/kube.nix
Vincent Ambo 81564185e9 Add 'users/glittershark/system/' from commit '3b174300ae60f63f50427cde3bfd680fd3043c3a'
git-subtree-dir: users/glittershark/system
git-subtree-mainline: 85d82a9dc2
git-subtree-split: 3b174300ae
2020-06-16 01:02:24 +01:00

37 lines
894 B
Nix

{ config, lib, pkgs, ... }:
let
pkgs-unstable = import <nixpkgs-unstable> {};
in
{
home.packages = with pkgs; [
kubectl
kubetail
sops
pkgs-unstable.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
'';
}