Skip to content

Commit

Permalink
change: increased block storage max volume size to 16TB (#10865)
Browse files Browse the repository at this point in the history
* new: increased block storage max volume size to 16TB

* Update changelogs

---------

Co-authored-by: Jaalah Ramos <jaalah.ramos@gmail.com>
  • Loading branch information
jmarmolm and jaalah authored Sep 3, 2024
1 parent def0778 commit 2986d19
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions packages/api-v4/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
### Changed:

- Deprecate `getClusters` ([#10801](https://github.com/linode/manager/pull/10801))
- Increase block storage max volume size to 16TB ([#10865](https://github.com/linode/manager/pull/10865))

### Upcoming Features:

Expand Down
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;
1 change: 1 addition & 0 deletions packages/manager/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Move manual snapshot error message from Linode Backups page to snapshot confirmation dialog ([#10791](https://github.com/linode/manager/pull/10791))
- "Create Volume" button text to "Add Volume" ([#10808](https://github.com/linode/manager/pull/10808))
- Storybook navigation bar organization ([#10809](https://github.com/linode/manager/pull/10809))
- Increase block storage max volume size to 16TB ([#10865](https://github.com/linode/manager/pull/10865))

### Fixed:

Expand Down
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
6 changes: 5 additions & 1 deletion packages/validation/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@

- Lack of `label` error validation for letter casing and symbols when creating Object Storage bucket ([#10842](https://github.com/linode/manager/pull/10842), [#10847](https://github.com/linode/manager/pull/10847))

### Changed:

- Increase block storage max volume size to 16TB ([#10865](https://github.com/linode/manager/pull/10865))

## [2024-08-05] - v0.51.0


Expand Down Expand Up @@ -33,7 +37,7 @@
### Changed:

- Breaking: change Placement Group `is_strict` to `placement_group_policy` and `affinity_type` to `placement_group_type` ([#10651](https://github.com/linode/manager/pull/10651))

## [2024-07-08] - v0.49.0

### Added:
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;

0 comments on commit 2986d19

Please sign in to comment.