11apiVersion : apiextensions.k8s.io/v1beta1
22kind : CustomResourceDefinition
33metadata :
4- name : arangobackuppolicies .backup.arangodb.com
4+ name : arangobackups .backup.arangodb.com
55 labels :
66 app.kubernetes.io/name : {{ template "kube-arangodb-crd.name" . }}
77 helm.sh/chart : {{ .Chart.Name }}-{{ .Chart.Version }}
@@ -11,28 +11,48 @@ metadata:
1111spec :
1212 group : backup.arangodb.com
1313 additionalPrinterColumns :
14- - JSONPath : .spec.schedule
15- description : Schedule
16- name : Schedule
14+ - JSONPath : .spec.policyName
15+ description : Policy name
16+ name : Policy
1717 type : string
18- - JSONPath : .status.scheduled
19- description : Scheduled
20- name : Scheduled
18+ - JSONPath : .spec.deployment.name
19+ description : Deployment name
20+ name : Deployment
21+ type : string
22+ - JSONPath : .status.backup.version
23+ description : Backup Version
24+ name : Version
25+ type : string
26+ - JSONPath : .status.backup.createdAt
27+ description : Backup Creation Timestamp
28+ name : Created
29+ type : string
30+ - JSONPath : .status.backup.sizeInBytes
31+ description : Backup Size in Bytes
32+ name : Size
33+ type : integer
34+ format : byte
35+ - JSONPath : .status.backup.numberOfDBServers
36+ description : Backup Number of the DB Servers
37+ name : DBServers
38+ type : integer
39+ - JSONPath : .status.state
40+ description : The actual state of the ArangoBackup
41+ name : State
2142 type : string
2243 - JSONPath : .status.message
2344 priority : 1
24- description : Message of the ArangoBackupPolicy object
45+ description : Message of the ArangoBackup object
2546 name : Message
2647 type : string
2748 names :
28- kind : ArangoBackupPolicy
29- listKind : ArangoBackupPolicyList
30- plural : arangobackuppolicies
49+ kind : ArangoBackup
50+ listKind : ArangoBackupList
51+ plural : arangobackups
3152 shortNames :
32- - arangobackuppolicy
33- - arangobp
34- singular : arangobackuppolicy
53+ - arangobackup
54+ singular : arangobackup
3555 scope : Namespaced
3656 version : v1alpha
3757 subresources :
38- status : {}
58+ status : {}
0 commit comments