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 90924eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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
3 changes: 1 addition & 2 deletions pkgs/kubenix.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ let
in
runCommand "kubenix"
{
kubeconfig = kubernetes.kubeconfig or "";
result = kubernetes.result or "";

# kubectl does some parsing which removes the -I flag so
Expand All @@ -34,7 +33,7 @@ runCommand "kubenix"
cat <<EOF> $out/bin/kubenix
set -uo pipefail
export KUBECONFIG=$kubeconfig
export KUBECONFIG=${kubernetes.kubeconfig}
export KUBECTL_EXTERNAL_DIFF=$diff
function _help() {
Expand Down

0 comments on commit 90924eb

Please sign in to comment.