ArangoDB v3.9 reached End of Life (EOL) and is no longer supported.
This documentation is outdated. Please see the most recent version at docs.arangodb.com
ArangoBackupPolicy Custom Resource
The ArangoBackupPolicy represents schedule definition for creating ArangoBackup Custom Resources by operator.
This deployment specification is a CustomResource
following
a CustomResourceDefinition
created by the operator.
Examples:Permalink
Create schedule for all deploymentsPermalink
apiVersion: "backup.arangodb.com/v1"
kind: "ArangoBackupPolicy"
metadata:
name: "example-arangodb-backup-policy"
spec:
schedule: "*/15 * * * *"
Action:
Create an ArangoBackup Custom Resource for each ArangoBackup every 15 minutes
Create schedule for selected deploymentsPermalink
apiVersion: "backup.arangodb.com/v1"
kind: "ArangoBackupPolicy"
metadata:
name: "example-arangodb-backup-policy"
spec:
schedule: "*/15 * * * *"
selector:
matchLabels:
labelName: "labelValue"
Action:
Create an ArangoBackup Custom Resource for selected ArangoBackup every 15 minutes
Create schedule for all deployments and uploadPermalink
apiVersion: "backup.arangodb.com/v1"
kind: "ArangoBackupPolicy"
metadata:
name: "example-arangodb-backup-policy"
spec:
schedule: "*/15 * * * * "
template:
upload:
repositoryURL: "s3:/..."
credentialsSecretName: "secret-name"
Create an ArangoBackup Custom Resource for each ArangoBackup every 15 minutes and upload to repositoryURL
ArangoBackup Custom Resource Spec:Permalink
apiVersion: "backup.arangodb.com/v1"
kind: "ArangoBackupPolicy"
metadata:
name: "example-arangodb-backup-policy"
spec:
schedule: "*/15 * * * * "
selector:
matchLabels:
labelName: "labelValue"
matchExpressions: []
template:
options:
timeout: 3
force: true
upload:
repositoryURL: "s3:/..."
credentialsSecretName: "secret-name"
status:
scheduled: "time"
message: "message"
spec: Object
Permalink
Spec of the ArangoBackupPolicy Custom Resource
Required: true
Default: {}
spec.schedule: String
Permalink
Schedule definition. Parser from https://godoc.org/github.com/robfig/cron
Required: true
Default: “”
spec.selector: Object
Permalink
Selector definition for selecting matching ArangoBackup Custom Resources. Parser from https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#LabelSelector
Required: false
Default: {}
spec.template: ArangoBackupTemplate
Permalink
Template for the ArangoBackup Custom Resource
Required: false
Default: {}
spec.template.options: ArangoBackup - spec.options
Permalink
ArangoBackup options
Required: false
Default: {}
spec.template.upload: ArangoBackup - spec.upload
Permalink
ArangoBackup upload configuration
Required: false
Default: {}
status: Object
Permalink
Status of the ArangoBackupPolicy Custom Resource managed by operator
Required: true
Default: {}
status.scheduled: TimeStamp
Permalink
Next scheduled time in UTC
Required: true
Default: “”
status.message: String
Permalink
Message from the operator in case of failure - schedule not valid, ArangoBackupPolicy not valid
Required: false
Default: “”