From d315543fc4bf6c33371b22c04e4eb7ff466d0938 Mon Sep 17 00:00:00 2001 From: Pierre Martin Date: Tue, 16 Aug 2022 08:23:47 +0200 Subject: [PATCH] feat(k8s): customize kubectl aliases for prod / build contexts --- home.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/home.nix b/home.nix index fe41c93..ca23229 100644 --- a/home.nix +++ b/home.nix @@ -346,7 +346,8 @@ source <(kubectl completion zsh) m = "make"; t = "task"; p = "~/.platformsh/bin/platform"; - k = "kubectl"; + k = "kubectl --context build"; + kp = "kubectl --context prod.eu1"; flyctl = "~/.fly/bin/flyctl"; g = "git"; tg = "tig --all";