Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion apis/vshn/v1/common_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ type Security struct {

// DeletionProtection blocks the deletion of the instance if it is enabled (enabled by default)
// +kubebuilder:default=true
DeletionProtection bool `json:"deletionProtection,omitempty"`
DeletionProtection bool `json:"deletionProtection"`

// AllowedGroups defines a list of Groups that have limited access to the instance namespace
AllowedGroups []string `json:"allowedGroups,omitempty"`
Expand Down
2 changes: 1 addition & 1 deletion apis/vshn/v1/dbaas_vshn_postgresql.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ type VSHNPostgreSQLBackup struct {
// DeletionProtection will protect the instance from being deleted for the given retention time.
// This is enabled by default.
// +kubebuilder:default=true
DeletionProtection *bool `json:"deletionProtection,omitempty"`
DeletionProtection *bool `json:"deletionProtection"`

// DeletionRetention specifies in days how long the instance should be kept after deletion.
// The default is keeping it one week.
Expand Down
Loading