forked from openshift/oadp-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoadp-operator.clusterserviceversion.yaml
More file actions
1481 lines (1475 loc) · 54.9 KB
/
oadp-operator.clusterserviceversion.yaml
File metadata and controls
1481 lines (1475 loc) · 54.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
apiVersion: operators.coreos.com/v1alpha1
kind: ClusterServiceVersion
metadata:
annotations:
alm-examples: |-
[
{
"apiVersion": "oadp.openshift.io/v1alpha1",
"kind": "DataProtectionApplication",
"metadata": {
"name": "velero-sample"
},
"spec": {
"backupLocations": [
{
"velero": {
"config": {
"profile": "default",
"region": "us-east-1"
},
"credential": {
"key": "cloud",
"name": "cloud-credentials"
},
"default": true,
"objectStorage": {
"bucket": "my-bucket-name",
"prefix": "velero"
},
"provider": "aws"
}
}
],
"configuration": {
"nodeAgent": {
"enable": true,
"uploaderType": "kopia"
},
"velero": {
"defaultPlugins": [
"openshift",
"aws",
"kubevirt",
"hypershift"
],
"disableFsBackup": false
}
},
"snapshotLocations": [
{
"velero": {
"config": {
"profile": "default",
"region": "us-west-2"
},
"provider": "aws"
}
}
]
}
},
{
"apiVersion": "oadp.openshift.io/v1alpha1",
"kind": "DataProtectionTest",
"metadata": {
"labels": {
"app.kubernetes.io/managed-by": "kustomize",
"app.kubernetes.io/name": "oadp-operator"
},
"name": "dataprotectiontest-sample"
},
"spec": null
},
{
"apiVersion": "oadp.openshift.io/v1alpha1",
"kind": "NonAdminBackup",
"metadata": {
"labels": {
"app.kubernetes.io/created-by": "oadp-operator",
"app.kubernetes.io/instance": "nonadminbackup-sample",
"app.kubernetes.io/managed-by": "kustomize",
"app.kubernetes.io/name": "nonadminbackup",
"app.kubernetes.io/part-of": "oadp-operator"
},
"name": "nonadminbackup-sample"
},
"spec": {
"backupSpec": {}
}
},
{
"apiVersion": "oadp.openshift.io/v1alpha1",
"kind": "NonAdminBackupStorageLocation",
"metadata": {
"labels": {
"app.kubernetes.io/created-by": "oadp-nac",
"app.kubernetes.io/instance": "nonadminbackupstoragelocation-sample",
"app.kubernetes.io/managed-by": "kustomize",
"app.kubernetes.io/name": "nonadminbackupstoragelocation",
"app.kubernetes.io/part-of": "oadp-nac"
},
"name": "nonadminbackupstoragelocation-sample"
},
"spec": {
"backupStorageLocationSpec": {
"config": {
"checksumAlgorithm": "",
"region": "eu-central-1"
},
"credential": {
"key": "default",
"name": "cloud-credentials"
},
"objectStorage": {
"bucket": "my-bucket",
"prefix": "nac-test"
},
"provider": "aws"
}
}
},
{
"apiVersion": "oadp.openshift.io/v1alpha1",
"kind": "NonAdminBackupStorageLocationRequest",
"metadata": {
"labels": {
"app.kubernetes.io/created-by": "oadp-nac",
"app.kubernetes.io/instance": "nonadminbackupstoragelocationrequest-sample",
"app.kubernetes.io/managed-by": "kustomize",
"app.kubernetes.io/name": "nonadminbackupstoragelocationrequest",
"app.kubernetes.io/part-of": "oadp-nac"
},
"name": "nonadminbackupstoragelocationrequest-sample"
},
"spec": {
"approvalDecision": "pending"
}
},
{
"apiVersion": "oadp.openshift.io/v1alpha1",
"kind": "NonAdminDownloadRequest",
"metadata": {
"labels": {
"app.kubernetes.io/managed-by": "kustomize",
"app.kubernetes.io/name": "oadp-nac"
},
"name": "nonadmindownloadrequest-sample"
},
"spec": {
"target": {
"kind": "BackupLog",
"name": "non-admin-backup-name"
}
}
},
{
"apiVersion": "oadp.openshift.io/v1alpha1",
"kind": "NonAdminRestore",
"metadata": {
"labels": {
"app.kubernetes.io/created-by": "oadp-nac",
"app.kubernetes.io/instance": "nonadminrestore-sample",
"app.kubernetes.io/managed-by": "kustomize",
"app.kubernetes.io/name": "nonadminrestore",
"app.kubernetes.io/part-of": "oadp-nac"
},
"name": "nonadminrestore-sample"
},
"spec": {
"restoreSpec": {
"backupName": "nonadminbackup-sample"
}
}
},
{
"apiVersion": "velero.io/v1",
"kind": "Backup",
"metadata": {
"name": "backup",
"namespace": "openshift-adp"
},
"spec": {}
},
{
"apiVersion": "velero.io/v1",
"kind": "BackupStorageLocation",
"metadata": {
"name": "backupstoragelocation",
"namespace": "openshift-adp"
},
"spec": {}
},
{
"apiVersion": "velero.io/v1",
"kind": "DeleteBackupRequest",
"metadata": {
"name": "deletebackuprequest",
"namespace": "openshift-adp"
},
"spec": {}
},
{
"apiVersion": "velero.io/v1",
"kind": "DownloadRequest",
"metadata": {
"name": "downloadrequest",
"namespace": "openshift-adp"
},
"spec": {}
},
{
"apiVersion": "velero.io/v1",
"kind": "PodVolumeBackup",
"metadata": {
"name": "podvolumebackup",
"namespace": "openshift-adp"
},
"spec": {}
},
{
"apiVersion": "velero.io/v1",
"kind": "PodVolumeRestore",
"metadata": {
"name": "podvolumerestore",
"namespace": "openshift-adp"
},
"spec": {}
},
{
"apiVersion": "velero.io/v1",
"kind": "Restore",
"metadata": {
"name": "restore",
"namespace": "openshift-adp"
},
"spec": {}
},
{
"apiVersion": "velero.io/v1",
"kind": "Schedule",
"metadata": {
"name": "schedule",
"namespace": "openshift-adp"
},
"spec": {}
},
{
"apiVersion": "velero.io/v1",
"kind": "ServerStatusRequest",
"metadata": {
"name": "serverstatusrequest",
"namespace": "openshift-adp"
},
"spec": {}
},
{
"apiVersion": "velero.io/v1",
"kind": "VolumeSnapshotLocation",
"metadata": {
"name": "volumesnapshotlocation",
"namespace": "openshift-adp"
},
"spec": {}
}
]
capabilities: Seamless Upgrades
categories: |
Cloud Provider,Developer Tools,Modernization & Migration,OpenShift Optional,Storage
certified: "false"
containerImage: quay.io/konveyor/oadp-operator:latest
createdAt: "2025-02-28T20:03:54Z"
description: OADP (OpenShift API for Data Protection) operator sets up and installs
Data Protection Applications on the OpenShift platform.
features.operators.openshift.io/cnf: "false"
features.operators.openshift.io/cni: "false"
features.operators.openshift.io/csi: "false"
features.operators.openshift.io/disconnected: "true"
features.operators.openshift.io/fips-compliant: "true"
features.operators.openshift.io/proxy-aware: "true"
features.operators.openshift.io/tls-profiles: "false"
features.operators.openshift.io/token-auth-aws: "true"
features.operators.openshift.io/token-auth-azure: "true"
features.operators.openshift.io/token-auth-gcp: "true"
olm.skipRange: '>=0.0.0 <99.0.0'
operatorframework.io/suggested-namespace: openshift-adp
operators.openshift.io/infrastructure-features: '["Disconnected"]'
operators.openshift.io/valid-subscription: '["OpenShift Kubernetes Engine", "OpenShift
Container Platform", "OpenShift Platform Plus"]'
operators.operatorframework.io/builder: operator-sdk-v1.35.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v4
repository: https://github.com/openshift/oadp-operator
support: Red Hat
labels:
operatorframework.io/arch.amd64: supported
operatorframework.io/arch.arm64: supported
operatorframework.io/arch.ppc64le: supported
operatorframework.io/arch.s390x: supported
name: oadp-operator.v99.0.0
namespace: openshift-adp
spec:
apiservicedefinitions: {}
customresourcedefinitions:
owned:
- description: A backup repository is an indicator of a connection from the restic/kopia
server to the backupstoragelocation.
displayName: BackupRepository
kind: BackupRepository
name: backuprepositories.velero.io
statusDescriptors:
- description: Phase is the current state of the BackupRepository.
displayName: Phase
path: phase
- description: Message is a message about the current status of the BackupRepository.
displayName: Message
path: message
- description: LastMaintenanceTime is the last time maintenance was run.
displayName: LastMaintenanceTime
path: lastMaintenanceTime
version: v1
- description: Backup is a Velero resource that represents the capture of Kubernetes
cluster state at a point in time (API objects and associated volume state).
displayName: Backup
kind: Backup
name: backups.velero.io
statusDescriptors:
- description: CompletionTimestamp records the time a backup was completed.
Completion time is recorded even on failed backups. Completion time is recorded
before uploading the backup object. The server's time is used for CompletionTimestamps.
displayName: CompletionTimestamp
path: completionTimestamp
- description: Expiration is when this Backup is eligible for garbage collection.
displayName: Expiration
path: expiration
- description: Format Version is the backup format version, including major,
minor, and patch version.
displayName: FormatVersion
path: formatVersion
- description: Phase is the current state of the Backup
displayName: Phase
path: phase
- description: Progress contains information about the backup's execution progress.
Note that this information is best-effort only -- if Velero fails to update
it during a backup for any reason, it may be inaccurate/stale.
displayName: Progress
path: progress
- description: Start Timestamp records the time a backup was started. Separate
from CreationTimestamp, since that value changes on restores. The server's
time is used for StartTimestamps.
displayName: StartTimestamp
path: startTimestamp
- description: ValidationErrors are a slice of all validation errors (if applicable).
displayName: Validation Errors
path: validationErrors
- description: VolumeSnapshotsAttempted is the total number of attempted volume
snapshots for this backup.
displayName: VolumeSnapshotsAttempted
path: volumeSnapshotsAttempted
- description: VolumeSnapshotsCompleted is the total number of successfully
completed volume snapshots for this backup.
displayName: VolumeSnapshotsCompleted
path: volumeSnapshotsCompleted
- description: Warnings is a count of all warning messages that were generated
during execution of the backup. The actual warnings are in the backup's
log file in object storage.
displayName: Warnings
path: warnings
- description: Errors is a count of all error messages that were generated during
execution of the backup. The actual errors are in the backup's log file
in object storage.
displayName: Errors
path: errors
version: v1
- description: BackupStorageLocation represents an object storage location (such
as Amazon S3 Bucket) where Velero stores backup objects.
displayName: BackupStorageLocation
kind: BackupStorageLocation
name: backupstoragelocations.velero.io
statusDescriptors:
- description: Phase is the current state of the BackupStorageLocation
displayName: Phase
path: phase
- description: LastSyncedTime is the last time the contents of the location
were synced into
displayName: LastSyncedTime
path: lastSyncedTime
- description: LastValidationTime is the last time the backup store location
was validated
displayName: LastValidationTime
path: lastValidationTime
version: v1
- description: The CloudStorage API automates the creation of a bucket for object
storage.
displayName: Cloud Storage
kind: CloudStorage
name: cloudstorages.oadp.openshift.io
statusDescriptors:
- description: Conditions represent the latest available observations of the
CloudStorage's current state
displayName: Conditions
path: conditions
- description: LastSyncTimestamp is the last time the contents of the CloudStorage
was synced
displayName: LastSyncTimestamp
path: lastSyncTimestamp
- description: Name is the name requested for the bucket (aws, gcp) or container
(azure)
displayName: Name
path: name
version: v1alpha1
- description: DataDownload represents a data download of a volume snapshot. There
is one DataDownload created per volume to be restored.
displayName: DataDownload
kind: DataDownload
name: datadownloads.velero.io
statusDescriptors:
- description: Phase is the current state of the DataDownload.
displayName: Phase
path: phase
- description: CompletionTimestamp records the time a restore was completed.
Completion time is recorded even on failed restores. The server's time is
used for CompletionTimestamps
displayName: CompletionTimestamp
path: completionTimestamp
- description: Message is a message about the current status of the BackupRepository.
displayName: Message
path: message
- description: Node is the name of the node where the DataDownload is processed.
displayName: Node
path: node
- description: Progress holds the total number of bytes of the snapshot and
the current number of restored bytes. This can be used to display progress
information about the restore operation.
displayName: Progress
path: progress
- description: StartTimestamp records the time a restore was started. The server's
time is used for StartTimestamps
displayName: StartTimestamp
path: startTimestamp
version: v2alpha1
- description: DataProtectionApplication represents configuration to install a
data protection application to safely backup and restore, perform disaster
recovery and migrate Kubernetes cluster resources and persistent volumes.
displayName: Data Protection Application
kind: DataProtectionApplication
name: dataprotectionapplications.oadp.openshift.io
statusDescriptors:
- description: Conditions defines the observed state of DataProtectionApplication
displayName: Conditions
path: conditions
version: v1alpha1
- description: DataProtectionTest is the Schema for the dataprotectiontests API
displayName: Data Protection Test
kind: DataProtectionTest
name: dataprotectiontests.oadp.openshift.io
version: v1alpha1
- description: DataUpload acts as the protocol between data mover plugins and
data mover controller for the datamover backup operation
displayName: DataUpload
kind: DataUpload
name: datauploads.velero.io
statusDescriptors:
- description: CompletionTimestamp records the time a backup was completed.
Completion time is recorded even on failed backups. Completion time is recorded
before uploading the backup object. The server's time is used for CompletionTimestamps
displayName: CompletionTimestamp
path: completionTimestamp
- description: DataMoverResult stores data-mover-specific information as a result
of the DataUpload.
displayName: DataMoverResult
path: dataMoverResult
- description: Message is a message about the DataUpload's status.
displayName: Message
path: message
- description: Node is the name of the node where the DataUpload is processed.
displayName: Node
path: node
- description: Path is the full path of the snapshot volume being backed up.
displayName: Path
path: path
- description: Phase is the current state of the DataUpload.
displayName: Phase
path: phase
- description: Progress holds the total number of bytes of the volume and the
current number of backed up bytes. This can be used to display progress
information about the backup operation.
displayName: Progress
path: progress
- description: SnapshotID is the identifier for the snapshot in the backup repository.
displayName: SnapshotID
path: snapshotID
- description: StartTimestamp records the time a backup was started. Separate
from CreationTimestamp, since that value changes on restores. The server's
time is used for StartTimestamps
displayName: StartTimestamp
path: startTimestamp
version: v2alpha1
- description: DeleteBackupRequest is a request to delete one or more backups.
displayName: DeleteBackupRequest
kind: DeleteBackupRequest
name: deletebackuprequests.velero.io
statusDescriptors:
- description: Phase is the current status of a DeleteBackupRequest
displayName: Phase
path: phase
- description: Errors contains any errors that were encountered during the deletion
process.
displayName: Errors
path: errors
version: v1
- description: DownloadRequest is a request to download an artifact from object
storage such as a backup log file.
displayName: DownloadRequest
kind: DownloadRequest
name: downloadrequests.velero.io
statusDescriptors:
- description: Phase is the current state of the DownloadRequest.
displayName: Phase
path: phase
- description: DownloadURL contains the pre-signed URL for the target file.
displayName: DownloadURL
path: downloadURL
- description: Expiration is when this DownloadRequest expires and can be deleted
by the system.
displayName: Expiration
path: expiration
version: v1
- description: NonAdminBackup is the Schema for the nonadminbackups API
displayName: Non Admin Backup
kind: NonAdminBackup
name: nonadminbackups.oadp.openshift.io
version: v1alpha1
- description: NonAdminBackupStorageLocationRequest is the Schema for the nonadminbackupstoragelocationrequests
API
displayName: Non Admin BackupStorageLocationRequest
kind: NonAdminBackupStorageLocationRequest
name: nonadminbackupstoragelocationrequests.oadp.openshift.io
version: v1alpha1
- description: NonAdminBackupStorageLocation is the Schema for the nonadminbackupstoragelocations
API
displayName: Non Admin BackupStorageLocation
kind: NonAdminBackupStorageLocation
name: nonadminbackupstoragelocations.oadp.openshift.io
version: v1alpha1
- kind: NonAdminDownloadRequest
name: nonadmindownloadrequests.oadp.openshift.io
version: v1alpha1
- description: NonAdminRestore is the Schema for the nonadminrestores API
displayName: Non Admin Restore
kind: NonAdminRestore
name: nonadminrestores.oadp.openshift.io
version: v1alpha1
- description: A velero pod volume backup is a restic backup of persistent volumes
attached to a running pod.
displayName: PodVolumeBackup
kind: PodVolumeBackup
name: podvolumebackups.velero.io
statusDescriptors:
- description: Phase is the current state of the PodVolumeBackup.
displayName: Phase
path: phase
- description: Path is the full path within the controller pod being backed
up.
displayName: Path
path: path
- description: SnapshotID is the identifier for the snapshot of the pod volume.
displayName: SnapshotID
path: snapshotID
- description: Message is a message about the pod volume backup's status.
displayName: Message
path: message
- description: StartTimestamp records the time a backup was started. Separate
from CreationTimestamp, since that value changes on restores. The server's
time is used for StartTimestamps
displayName: StartTimestamp
path: startTimestamp
- description: CompletionTimestamp records the time a backup was completed.
Completion time is recorded even on failed backups. Completion time is recorded
before uploading the backup object. The server's time is used for CompletionTimestamps
displayName: CompletionTimestamp
path: completionTimestamp
- description: Progress holds the total number of bytes of the volume and the
current number of backed up bytes. This can be used to display progress
information about the backup operation.
displayName: Progress
path: progress
version: v1
- description: A velero pod volume restore is a restic restore of persistent volumes
attached to a running pod.
displayName: PodVolumeRestore
kind: PodVolumeRestore
name: podvolumerestores.velero.io
statusDescriptors:
- description: Phase is the current state of the PodVolumeRestore.
displayName: Phase
path: phase
- description: Message is a message about the pod volume restore's status.
displayName: Message
path: message
- description: StartTimestamp records the time a restore was started. The server's
time is used for StartTimestamps
displayName: StartTimestamp
path: startTimestamp
- description: CompletionTimestamp records the time a restore was completed.
Completion time is recorded even on failed restores. The server's time is
used for CompletionTimestamps
displayName: CompletionTimestamp
path: completionTimestamp
- description: Progress holds the total number of bytes of the snapshot and
the current number of restored bytes. This can be used to display progress
information about the restore operation.
displayName: Progress
path: progress
version: v1
- description: Restore is a Velero resource that represents the application of
resources from a Velero backup to a target Kubernetes cluster.
displayName: Restore
kind: Restore
name: restores.velero.io
statusDescriptors:
- description: Phase is the current state of the Restore
displayName: Phase
path: phase
- description: ValidationErrors is a slice of all validation errors (if applicable)
displayName: ValidationErrors
path: validationErrors
- description: Warnings is a count of all warning messages that were generated
during execution of the restore. The actual warnings are stored in object
storage.
displayName: Warnings
path: warnings
- description: Errors is a count of all error messages that were generated during
execution of the restore. The actual errors are stored in object storage.
displayName: Errors
path: errors
- description: FailureReason is an error that caused the entire restore to fail.
displayName: FailureReason
path: failureReason
- description: StartTimestamp records the time the restore operation was started.
The server's time is used for StartTimestamps
displayName: StartTimestamp
path: startTimestamp
- description: CompletionTimestamp records the time the restore operation was
completed. Completion time is recorded even on failed restore. The server's
time is used for StartTimestamps
displayName: CompletionTimestamp
path: completionTimestamp
- description: Progress contains information about the restore's execution progress.
Note that this information is best-effort only -- if Velero fails to update
it during a restore for any reason, it may be inaccurate/stale.
displayName: Progress
path: progress
version: v1
- description: Schedule is a Velero resource that represents a pre-scheduled or
periodic Backup that should be run.
displayName: Schedule
kind: Schedule
name: schedules.velero.io
statusDescriptors:
- description: Phase is the current phase of the Schedule
displayName: Phase
path: phase
- description: LastBackup is the last time a Backup was run for this Schedule
schedule
displayName: LastBackup
path: lastBackup
- description: ValidationErrors is a slice of all validation errors (if applicable)
displayName: ValidationErrors
path: validationErrors
version: v1
- description: ServerStatusRequest is a request to access current status information
about the Velero server.
displayName: ServerStatusRequest
kind: ServerStatusRequest
name: serverstatusrequests.velero.io
statusDescriptors:
- description: Phase is the current lifecycle phase of the ServerStatusRequest.
displayName: Phase
path: phase
- description: ProcessedTimestamp is when the ServerStatusRequest was processed
by the ServerStatusRequestController.
displayName: ProcessedTimestamp
path: processedTimestamp
- description: ServerVersion is the Velero server version.
displayName: ServerVersion
path: serverVersion
- description: Plugins list information about the plugins running on the Velero
server
displayName: Plugins
path: plugins
version: v1
- kind: VirtualMachineBackupsDiscovery
name: virtualmachinebackupsdiscoveries.oadp.openshift.io
version: v1alpha1
- kind: VirtualMachineFileRestore
name: virtualmachinefilerestores.oadp.openshift.io
version: v1alpha1
- description: VolumeSnapshotLocation is a location where Velero stores volume
snapshots.
displayName: VolumeSnapshotLocation
kind: VolumeSnapshotLocation
name: volumesnapshotlocations.velero.io
statusDescriptors:
- description: Phase is the current lifecycle phase of the VolumeSnapshotLocation
displayName: Phase
path: phase
version: v1
description: |
**OpenShift API for Data Protection (OADP)** operator sets up and installs
Velero on the OpenShift platform, allowing users to backup and restore
applications.
Backup and restore Kubernetes resources and internal images, at the
granularity of a namespace, using a version of Velero appropriate for
the installed version of OADP.
OADP backs up Kubernetes objects and internal images by saving them as
an archive file on object storage. OADP backs up persistent volumes
(PVs) by creating snapshots with the native cloud snapshot API or with
the Container Storage Interface (CSI). For cloud providers that do not
support snapshots, OADP backs up resources and PV data with Restic or Kopia.
* [Installing OADP for application backup and restore][install-doc]
* [Installing OADP on a ROSA cluster and using STS, please follow the Getting Started Steps 1-3 in order to obtain the role ARN needed for using the standardized STS configuration flow via OLM][rosa-sts-doc]
* [Frequently Asked Questions][faq-doc]
[install-doc]: https://docs.openshift.com/container-platform/latest/backup_and_restore/application_backup_and_restore/installing/about-installing-oadp.html
[rosa-sts-doc]: https://mobb.ninja/docs/misc/oadp/rosa-sts/
[faq-doc]: https://access.redhat.com/articles/5456281
displayName: OADP Operator
icon:
- base64data: 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
mediatype: image/png
install:
spec:
clusterPermissions:
- rules:
- apiGroups:
- ""
resources:
- namespaces
verbs:
- get
- list
- watch
- apiGroups:
- ""
resources:
- secrets
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- oadp.openshift.io
resources:
- dataprotectionapplications
verbs:
- list
- apiGroups:
- oadp.openshift.io
resources:
- nonadminbackups
- nonadminbackupstoragelocationrequests
- nonadminbackupstoragelocations
- nonadmindownloadrequests
- nonadminrestores
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- oadp.openshift.io
resources:
- nonadminbackups/finalizers
- nonadminbackupstoragelocations/finalizers
- nonadmindownloadrequests/finalizers
- nonadminrestores/finalizers
verbs:
- update
- apiGroups:
- oadp.openshift.io
resources:
- nonadminbackups/status
- nonadminbackupstoragelocationrequests/status
- nonadminbackupstoragelocations/status
- nonadmindownloadrequests/status
- nonadminrestores/status
verbs:
- get
- patch
- update
- apiGroups:
- velero.io
resources:
- backups
- backupstoragelocations
- deletebackuprequests
- downloadrequests
- restores
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- velero.io
resources:
- backupstoragelocations/status
verbs:
- get
- patch
- update
- apiGroups:
- velero.io
resources:
- datadownloads
- datauploads
- podvolumebackups
- podvolumerestores
verbs:
- get
- list
- watch
- apiGroups:
- velero.io
resources:
- downloadrequests/status
verbs:
- get
serviceAccountName: non-admin-controller
- rules:
- apiGroups:
- ""
resources:
- events
- namespaces
- pods
- secrets
- serviceaccounts
- services
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- ""
resources:
- persistentvolumeclaims
verbs:
- get
- list
- watch
- apiGroups:
- apps
resources:
- deployments
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- coordination.k8s.io
resources:
- leases
verbs:
- get
- list
- watch
- create
- update
- patch
- delete
- apiGroups:
- oadp.openshift.io
resources:
- virtualmachinebackupsdiscoveries
- virtualmachinefilerestores
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- oadp.openshift.io
resources:
- virtualmachinebackupsdiscoveries/finalizers
- virtualmachinefilerestores/finalizers
verbs:
- update
- apiGroups:
- oadp.openshift.io
resources:
- virtualmachinebackupsdiscoveries/status
- virtualmachinefilerestores/status
verbs:
- get
- patch
- update
- apiGroups:
- rbac.authorization.k8s.io
resources:
- rolebindings
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- route.openshift.io
resources:
- routes
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- velero.io
resources:
- backups
verbs:
- get
- list
- watch
- apiGroups:
- velero.io
resources:
- datadownloads
verbs:
- get
- list
- patch
- watch
- apiGroups:
- velero.io
resources:
- downloadrequests
verbs:
- create
- delete
- get
- list
- watch
- apiGroups:
- velero.io
resources:
- restores
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
serviceAccountName: oadp-vm-file-restore-controller-manager
- rules:
- apiGroups:
- ""
resources:
- configmaps
- endpoints
- events
- persistentvolumeclaims
- pods
- secrets
- serviceaccounts
- services
verbs:
- create