Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change: increased block storage max volume size to 16TB #10865

Merged
merged 3 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/api-v4/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ export const BETA_API_ROOT = API_ROOT + 'beta';
// Value from 1-4 reflecting a minimum score from zxcvbn
export const MINIMUM_PASSWORD_STRENGTH = 4;

export const MAX_VOLUME_SIZE = 10240;
export const MAX_VOLUME_SIZE = 16384;
2 changes: 1 addition & 1 deletion packages/manager/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const DATETIME_DISPLAY_FORMAT = 'yyyy-MM-dd HH:mm';
export const ISO_DATE_FORMAT = 'yyyy-MM-dd';
export const ISO_DATETIME_NO_TZ_FORMAT = "yyyy-MM-dd'T'HH:mm:ss";

export const MAX_VOLUME_SIZE = 10240;
export const MAX_VOLUME_SIZE = 16384;

/**
* As per the current support polocy
Expand Down
2 changes: 1 addition & 1 deletion packages/validation/src/constants.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const MAX_VOLUME_SIZE = 10240;
export const MAX_VOLUME_SIZE = 16384;