cargo fmt
All checks were successful
Run Check Script / check (pull_request) Successful in 1m4s

This commit is contained in:
2026-01-07 15:57:56 -05:00
parent 4dcaf55dc5
commit 0f9a53c8f6

View File

@@ -1027,7 +1027,7 @@ impl K8sAnywhereConfig {
}
Self {
kubeconfig: get_kube_config_path().map(|s| s.to_string_lossy().into_owned()),
kubeconfig: get_kube_config_path().map(|s| s.to_string_lossy().into_owned()),
use_system_kubeconfig: std::env::var("HARMONY_USE_SYSTEM_KUBECONFIG")
.map_or_else(|_| false, |v| v.parse().ok().unwrap_or(false)),
autoinstall: std::env::var("HARMONY_AUTOINSTALL")