The credentials used by Velero for DPA (Data Protection Application) follow a structure similar to AWS credentials. These credentials are used to authenticate and access the backup storage location. The format typically includes access keys, secret keys, and other provider-specific authentication details.
This is how to create the credentials secrets in the OCP Management cluster:
oc create secret generic cloud-credentials --namespace openshift-adp --from-file cloud=credentials-veleroThe credentials-velero file should contain the credentials in the following format:
[default]
aws_access_key_id=<EXAMPLE_ID>
aws_secret_access_key=<EXAMPLE_ACCESS_KEY>Replace the example values with your actual credentials. The file should be created before running the oc create secret command.