Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

default kubeconfig to ~/.kube/config #49

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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";
hall marked this conversation as resolved.
Show resolved Hide resolved
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
Loading