import k8s from "@kubernetes/client-node"; import Minecluster from "../lib/Minecluster.js"; const mcl = new Minecluster(); mcl.start(); async function main(){ const kc = new k8s.KubeConfig(); kc.loadFromDefault(); } main().catch((e)=>{console.log(e)});