1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00

Fix doc for AllowConcurrent in BackupPolicySpec (#1320)

This commit is contained in:
Nikita Vaniasin 2023-05-31 13:56:41 +02:00 committed by GitHub
parent c6db96dd88
commit 256d4c43de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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)

View file

@ -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"`