Skip to content

Commit

Permalink
default kubeconfig to $HOME/.kube/config
Browse files Browse the repository at this point in the history
  • Loading branch information
hall committed Dec 10, 2023
1 parent e4d0365 commit 09b7d9b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- default `kubernetes.kubeconfig` to `$HOME/.kube/config`
- removed local `kubectl` and `kubernetes` packages in lieu of those from nixpkgs

## [0.2.0] - 2023-07-07
Expand Down
2 changes: 1 addition & 1 deletion modules/k8s.nix
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ in
kubeconfig = mkOption {
description = "path to kubeconfig file (default: use $KUBECONFIG)";
type = types.nullOr types.str;
default = null;
default = "$HOME/.kube/config";
example = "/run/secrets/kubeconfig";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/kubenix.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ let
in
runCommand "kubenix"
{
kubeconfig = kubernetes.kubeconfig or "";
inherit (kubernetes) kubeconfig;
result = kubernetes.result or "";

# kubectl does some parsing which removes the -I flag so
Expand Down

0 comments on commit 09b7d9b

Please sign in to comment.