This commit is contained in:
Morten Olsen
2025-10-23 13:47:07 +02:00
commit b851dc3006
91 changed files with 7578 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { KubeConfig } from '@kubernetes/client-node';
class K8sConfig extends KubeConfig {
constructor() {
super();
this.loadFromDefault();
}
}
export { K8sConfig };