Error when trying to download a backup #3420
-
Running the command
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This error is caused by the MinIO service running as an instance inside your cluster (don't do this for production!) but not being accessible outside the cluster. To fix this, you will need to forward the MinIO port to the local machine using More details about the |
Beta Was this translation helpful? Give feedback.
This error is caused by the MinIO service running as an instance inside your cluster (don't do this for production!) but not being accessible outside the cluster.
To fix this, you will need to forward the MinIO port to the local machine using
kubectl port-forward -n <velero-namespace> svc/minio 9000
and then update the BSL configuration to use that as its "public URL" by addingpublicUrl: http://localhost:9000
to the BSL config.More details about the
publicUrl
config field can be found in the AWS plugin docs: https://github.com/vmware-tanzu/velero-plugin-for-aws/blob/main/backupstoragelocation.md