Skip to content

Commit 256d4c4

Browse files
Fix doc for AllowConcurrent in BackupPolicySpec (#1320)
1 parent c6db96d commit 256d4c4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
- (Maintenance) Generics for type handling
1111
- (Bugfix) Fix creating sync components with EA type set to Managed and headless svc
1212
- (Feature) Check if Volume with LocalStorage is missing
13-
- (Feature) Add disallowConcurrent option to ArangoBackupPolicy
13+
- (Feature) Add allowConcurrent option to ArangoBackupPolicy
1414
- (Feature) Allow to recreate Local volumes
1515

1616
## [1.2.27](https://github.com/arangodb/kube-arangodb/tree/1.2.27) (2023-04-27)

pkg/apis/backup/v1/backup_policy_spec.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import (
2929
type ArangoBackupPolicySpec struct {
3030
// Schedule is cron-compatible specification of backup schedule
3131
Schedule string `json:"schedule"`
32-
// AllowConcurrent if true, ArangoBackup will not be created when previous Backups are not finished. Defaults to true
32+
// AllowConcurrent if false, ArangoBackup will not be created when previous Backups are not finished. Defaults to true
3333
AllowConcurrent *bool `json:"allowConcurrent,omitempty"`
3434
// DeploymentSelector specifies which deployments should get a backup
3535
DeploymentSelector *meta.LabelSelector `json:"selector,omitempty"`

0 commit comments

Comments
 (0)