aboutsummaryrefslogtreecommitdiff
path: root/users/profiles/k8s.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/profiles/k8s.nix')
-rw-r--r--users/profiles/k8s.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/users/profiles/k8s.nix b/users/profiles/k8s.nix
deleted file mode 100644
index 3ef4152..0000000
--- a/users/profiles/k8s.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ self, pkgs, ... }:
-{
-
- imports = [
- "${self}/users/programs/k9s.nix"
- "${self}/users/programs/kubie.nix"
- ];
-
- home.packages = with pkgs; [
- kind # k8s in docker
- kubebuilder # generate controller
- kubectl
- kubernetes-helm # deploy applications
- kubelogin-oidc # OIDC plugin
- ];
-
- programs.fish = {
- shellAbbrs = {
- k = "kubectl";
- klogs = "kubectl logs";
- };
- shellAliases = {
- ukctx = "${pkgs.gh}/bin/gh api --hostname github.rbx.com repos/Roblox/cell-lifecycle/contents/rks/kubeconfig --jq '.content' | base64 -d > ~/.kube/rksconfig";
- };
- };
-}