From 930f600289365a466f97687286d2b6a24c802f7e Mon Sep 17 00:00:00 2001 From: Nikita Vaniasin Date: Wed, 31 May 2023 13:19:13 +0200 Subject: [PATCH 1/2] Fix doc for AllowConcurrent in BackupPolicySpec --- pkg/apis/backup/v1/backup_policy_spec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"` From a7b1657176754145845c5ba5494acfb3646fcd82 Mon Sep 17 00:00:00 2001 From: Nikita Vaniasin Date: Wed, 31 May 2023 13:29:33 +0200 Subject: [PATCH 2/2] Update CHANGELOG also --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)