@crossdelta/infrastructure 0.2.16 → 0.2.18
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.
- package/dist/index.cjs +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -311749,10 +311749,10 @@ function buildDropletServices(options) {
|
|
|
311749
311749
|
region,
|
|
311750
311750
|
name: volumeConfig.name,
|
|
311751
311751
|
size: volumeConfig.sizeGb,
|
|
311752
|
-
|
|
311752
|
+
initialFilesystemType: "ext4",
|
|
311753
311753
|
description: volumeConfig.description || `Persistent storage for ${volumeConfig.name}`
|
|
311754
311754
|
}, {
|
|
311755
|
-
ignoreChanges: ["description"],
|
|
311755
|
+
ignoreChanges: ["description", "initialFilesystemType"],
|
|
311756
311756
|
retainOnDelete: true
|
|
311757
311757
|
});
|
|
311758
311758
|
}
|
package/dist/index.js
CHANGED
|
@@ -311686,10 +311686,10 @@ function buildDropletServices(options) {
|
|
|
311686
311686
|
region,
|
|
311687
311687
|
name: volumeConfig.name,
|
|
311688
311688
|
size: volumeConfig.sizeGb,
|
|
311689
|
-
|
|
311689
|
+
initialFilesystemType: "ext4",
|
|
311690
311690
|
description: volumeConfig.description || `Persistent storage for ${volumeConfig.name}`
|
|
311691
311691
|
}, {
|
|
311692
|
-
ignoreChanges: ["description"],
|
|
311692
|
+
ignoreChanges: ["description", "initialFilesystemType"],
|
|
311693
311693
|
retainOnDelete: true
|
|
311694
311694
|
});
|
|
311695
311695
|
}
|