Add 'users/glittershark/system/' from commit '3b174300ae'
git-subtree-dir: users/glittershark/system git-subtree-mainline:85d82a9dc2git-subtree-split:3b174300ae
This commit is contained in:
commit
81564185e9
49 changed files with 3802 additions and 0 deletions
37
users/glittershark/system/home/modules/development/kube.nix
Normal file
37
users/glittershark/system/home/modules/development/kube.nix
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{ 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
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue