diff options
author | Franck Cuny <franck@fcuny.net> | 2024-12-16 10:50:20 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-12-16 10:50:20 -0800 |
commit | 49fcaf7d1a548622f8c7482f5ef22875e693e166 (patch) | |
tree | b5ef27102a35cebb06ed011dff646680d7583aca /nix/users | |
parent | some more cleanup (diff) | |
download | world-49fcaf7d1a548622f8c7482f5ef22875e693e166.tar.gz |
update the alias to fetch the kube config
Diffstat (limited to 'nix/users')
-rw-r--r-- | nix/users/fcuny/k8s.nix | 3 |
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 + ''; }; }; } |