mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-15 17:51:03 +00:00
Fix doc for AllowConcurrent in BackupPolicySpec (#1320)
This commit is contained in:
parent
c6db96dd88
commit
256d4c43de
2 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@
|
||||||
- (Maintenance) Generics for type handling
|
- (Maintenance) Generics for type handling
|
||||||
- (Bugfix) Fix creating sync components with EA type set to Managed and headless svc
|
- (Bugfix) Fix creating sync components with EA type set to Managed and headless svc
|
||||||
- (Feature) Check if Volume with LocalStorage is missing
|
- (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
|
- (Feature) Allow to recreate Local volumes
|
||||||
|
|
||||||
## [1.2.27](https://github.com/arangodb/kube-arangodb/tree/1.2.27) (2023-04-27)
|
## [1.2.27](https://github.com/arangodb/kube-arangodb/tree/1.2.27) (2023-04-27)
|
||||||
|
|
|
@ -29,7 +29,7 @@ import (
|
||||||
type ArangoBackupPolicySpec struct {
|
type ArangoBackupPolicySpec struct {
|
||||||
// Schedule is cron-compatible specification of backup schedule
|
// Schedule is cron-compatible specification of backup schedule
|
||||||
Schedule string `json:"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"`
|
AllowConcurrent *bool `json:"allowConcurrent,omitempty"`
|
||||||
// DeploymentSelector specifies which deployments should get a backup
|
// DeploymentSelector specifies which deployments should get a backup
|
||||||
DeploymentSelector *meta.LabelSelector `json:"selector,omitempty"`
|
DeploymentSelector *meta.LabelSelector `json:"selector,omitempty"`
|
||||||
|
|
Loading…
Reference in a new issue