api/ui: allow zstd compression for new zpools

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2021-07-30 13:39:34 +02:00 committed by Thomas Lamprecht
parent 9ba4833f3c
commit 8be69a8453
2 changed files with 3 additions and 0 deletions

View File

@ -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.

View File

@ -60,6 +60,7 @@ Ext.define('PBS.window.CreateZFS', {
['lz4', 'lz4'], ['lz4', 'lz4'],
['lzjb', 'lzjb'], ['lzjb', 'lzjb'],
['zle', 'zle'], ['zle', 'zle'],
['zstd', 'zstd'],
], ],
}, },
{ {