Compare commits

..

1 Commits

Author SHA1 Message Date
Morten Olsen
aa0abfb443 Added storage provisioner 2025-08-11 12:00:00 +02:00
2 changed files with 1 additions and 2 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,7 +36,6 @@ class StorageProvider {
return;
}
const target = `/data/volumes/${pvc.namespace}/${pvc.name}`;
console.log('TARGET: ', target);
try {
await mkdir(target, { recursive: true });
} catch (err) {