api/ui: allow zstd compression for new zpools
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
9ba4833f3c
commit
8be69a8453
|
@ -63,6 +63,8 @@ pub enum ZfsCompressionType {
|
||||||
Lzjb,
|
Lzjb,
|
||||||
/// ZLE
|
/// ZLE
|
||||||
Zle,
|
Zle,
|
||||||
|
/// ZStd
|
||||||
|
ZStd,
|
||||||
/// Enable compression using the default algorithm.
|
/// Enable compression using the default algorithm.
|
||||||
On,
|
On,
|
||||||
/// Disable compression.
|
/// Disable compression.
|
||||||
|
|
|
@ -60,6 +60,7 @@ Ext.define('PBS.window.CreateZFS', {
|
||||||
['lz4', 'lz4'],
|
['lz4', 'lz4'],
|
||||||
['lzjb', 'lzjb'],
|
['lzjb', 'lzjb'],
|
||||||
['zle', 'zle'],
|
['zle', 'zle'],
|
||||||
|
['zstd', 'zstd'],
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue