Skip to content
Open
Changes from all commits
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
6 changes: 3 additions & 3 deletions pkg/api/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ type BarmanObjectStoreConfiguration struct {
// WAL stream
type WalBackupConfiguration struct {
// Compress a WAL file before sending it to the object store. Available
// options are empty string (no compression, default), `gzip`, `bzip2`,
// options are empty string (no compression, default), `bzip2`, `gzip`,
// `lz4`, `snappy`, `xz`, and `zstd`.
// +kubebuilder:validation:Enum=bzip2;gzip;lz4;snappy;xz;zstd
// +optional
Expand Down Expand Up @@ -282,8 +282,8 @@ type WalBackupConfiguration struct {
type DataBackupConfiguration struct {
// Compress a backup file (a tar file per tablespace) while streaming it
// to the object store. Available options are empty string (no
// compression, default), `gzip`, `bzip2`, `lz4`, and `snappy`.
// +kubebuilder:validation:Enum=bzip2;gzip;lz4;snappy
// compression, default), `bzip2`, `gzip`, `lz4`, `snappy`, and `zstd`.
// +kubebuilder:validation:Enum=bzip2;gzip;lz4;snappy;xz;zstd
// +optional
Compression CompressionType `json:"compression,omitempty"`

Expand Down