about summary refs log tree commit diff
path: root/nix/users
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-12-16 10:50:20 -0800
committerFranck Cuny <franck@fcuny.net>2024-12-16 10:50:20 -0800
commit49fcaf7d1a548622f8c7482f5ef22875e693e166 (patch)
treeb5ef27102a35cebb06ed011dff646680d7583aca /nix/users
parentsome more cleanup (diff)
downloadworld-49fcaf7d1a548622f8c7482f5ef22875e693e166.tar.gz
update the alias to fetch the kube config
Diffstat (limited to 'nix/users')
-rw-r--r--nix/users/fcuny/k8s.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nix/users/fcuny/k8s.nix b/nix/users/fcuny/k8s.nix
index 01fb802..5461142 100644
--- a/nix/users/fcuny/k8s.nix
+++ b/nix/users/fcuny/k8s.nix
@@ -27,7 +27,8 @@
   programs.fish = {
     shellAliases = {
       ukctx = ''
-        ${pkgs.gh}/bin/gh api "repos/Roblox/prophase/contents/path/to/file" --jq '.content' | base64 -d > ~/.kube/rksconfig'';
+        GH_HOST=github.rbx.com ${pkgs.gh}/bin/gh api "repos/Roblox/cell-lifecycle/contents/rks/kubeconfig" --jq '.content' | base64 -d > ~/.kube/rksconfig
+      '';
     };
   };
 }