Compare commits

..

1 Commits

Author SHA1 Message Date
Morten Olsen
598f54581c Added storage provisioner 2025-08-11 11:36:44 +02:00
2 changed files with 2 additions and 1 deletions

View File

@@ -79,4 +79,4 @@ const customResourceService = services.get(CustomResourceService);
customResourceService.register(...customResources);
await customResourceService.install(true);
await customResourceService.watch();
// await customResourceService.watch();

View File

@@ -36,6 +36,7 @@ class StorageProvider {
return;
}
const target = `/data/volumes/${pvc.namespace}/${pvc.name}`;
console.log('TARGET: ', target);
try {
await mkdir(target, { recursive: true });
} catch (err) {