Skip to content

Commit

Permalink
Fix doc for AllowConcurrent in BackupPolicySpec (#1320)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikita-vanyasin authored May 31, 2023
1 parent c6db96d commit 256d4c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pkg/apis/backup/v1/backup_policy_spec.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
Expand Down

0 comments on commit 256d4c4

Please sign in to comment.