mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
36 lines
882 B
Plaintext
36 lines
882 B
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * backup_and_restore/application_backup_and_restore/advanced-topics.adoc
|
|
|
|
|
|
:_content-type: PROCEDURE
|
|
[id="oadp-using-enable-api-group-versions_{context}"]
|
|
= Using Enable API Group Versions
|
|
|
|
You can use Velero's Enable API Group Versions feature to back up _all_ Kubernetes API group versions that are supported on a cluster, not only the preferred one.
|
|
|
|
[NOTE]
|
|
====
|
|
Enable API Group Versions is still in beta.
|
|
====
|
|
|
|
.Procedure
|
|
|
|
* Configure the `EnableAPIGroupVersions` feature flag:
|
|
|
|
[source,yaml]
|
|
----
|
|
apiVersion: oadp.openshift.io/vialpha1
|
|
kind: DataProtectionApplication
|
|
...
|
|
spec:
|
|
configuration:
|
|
velero:
|
|
featureFlags:
|
|
- EnableAPIGroupVersions
|
|
----
|
|
|
|
[role="_additional-resources"]
|
|
.Additional resources
|
|
* link:https://velero.io/docs/v1.9/enable-api-group-versions-feature/[Enable API Group Versions Feature]
|