@firestartr/cli 1.48.1-snapshot-0 → 1.48.1-snapshot-1
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/build/index.js +1 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -302472,7 +302472,7 @@ function validateCrSizes(crs) {
|
|
|
302472
302472
|
const serialized = catalog_common.io.toYaml(cr);
|
|
302473
302473
|
const size = Buffer.byteLength(serialized, 'utf8');
|
|
302474
302474
|
if (size > K8S_OBJECT_SIZE_LIMIT) {
|
|
302475
|
-
throw new Error(`CR "${key}" exceeds the Kubernetes object size limit by ${size - K8S_OBJECT_SIZE_LIMIT} bytes
|
|
302475
|
+
throw new Error(`CR "${key}" exceeds the Kubernetes object size limit by ${size - K8S_OBJECT_SIZE_LIMIT} bytes. Maximum allowed is ${K8S_OBJECT_SIZE_LIMIT} bytes (1.5MiB).`);
|
|
302476
302476
|
}
|
|
302477
302477
|
}
|
|
302478
302478
|
}
|