@kumori/aurora-backend-handler 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -586,6 +586,12 @@ export const processDeployment = (
|
|
|
586
586
|
allServiceParameters,
|
|
587
587
|
);
|
|
588
588
|
allServiceParameters.push(...fileSystemParameters);
|
|
589
|
+
const fileSystemResources = extractResourcesFromFilesystem(
|
|
590
|
+
roleData.artifact.description?.code?.[roleName]?.mapping
|
|
591
|
+
?.filesystem || [],
|
|
592
|
+
serviceResources,
|
|
593
|
+
);
|
|
594
|
+
serviceResources.push(...fileSystemResources);
|
|
589
595
|
const roleResources = extractResources(roleData.config?.resource || {});
|
|
590
596
|
const existingRole = service.role.find((r) => r.name === roleName);
|
|
591
597
|
let hsize = 1;
|