Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 941 Bytes

features_flag.md

File metadata and controls

20 lines (18 loc) · 941 Bytes

Usage of Velero --features flag


Some of the new features in Velero are released as beta features, behind feature flags, which are not enabled by default during the Velero installation. In order to provide --features flag values, you need to use the specify the flags under configuration.velero.featureFlags: in the oadp.openshift.io/v1alpha1_dpa.yaml file during deployment.

Some of the usage instances of the --features flag are as follows:

  • Enabling Velero plugin for CSI: To enable CSI plugin you need to add two things in the oadp.openshift.io/v1alpha1_dpa.yaml file during deployment.
    • First, add csi under the configuration.velero.defaultPlugins
    • Second, add EnableCSI under configuration.velero.featureFlags
defaultPlugins:
- csi
veleroFeatureFlags: EnableCSI