Change-Id: I6c6847fac56f0a9a1a2209792e00a3aec5e672b9 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10809 Autosubmit: aspen <root@gws.fyi> Reviewed-by: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI Reviewed-by: lukegb <lukegb@tvl.fyi>
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			824 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			824 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ 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
 | 
						|
  '';
 | 
						|
}
 |