diff --git a/CHANGELOG.md b/CHANGELOG.md index 612cbdcdc..c35e2f692 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ - (Maintenance) Generics for type handling - (Bugfix) Fix creating sync components with EA type set to Managed and headless svc - (Feature) Check if Volume with LocalStorage is missing -- (Feature) Add disallowConcurrent option to ArangoBackupPolicy +- (Feature) Add allowConcurrent option to ArangoBackupPolicy - (Feature) Allow to recreate Local volumes ## [1.2.27](https://github.com/arangodb/kube-arangodb/tree/1.2.27) (2023-04-27) diff --git a/pkg/apis/backup/v1/backup_policy_spec.go b/pkg/apis/backup/v1/backup_policy_spec.go index dbbda3303..762ce42e2 100644 --- a/pkg/apis/backup/v1/backup_policy_spec.go +++ b/pkg/apis/backup/v1/backup_policy_spec.go @@ -29,7 +29,7 @@ import ( type ArangoBackupPolicySpec struct { // Schedule is cron-compatible specification of backup schedule Schedule string `json:"schedule"` - // AllowConcurrent if true, ArangoBackup will not be created when previous Backups are not finished. Defaults to true + // AllowConcurrent if false, ArangoBackup will not be created when previous Backups are not finished. Defaults to true AllowConcurrent *bool `json:"allowConcurrent,omitempty"` // DeploymentSelector specifies which deployments should get a backup DeploymentSelector *meta.LabelSelector `json:"selector,omitempty"`