Backup stores only log files in Azure Blob Storage #3546
-
Hi, I’m trying to use Velero with Azure Blob Storage for the first time. When I run following command velero backup create default-202103081305 --include-namespaces default" , Velero created the folder in the blob storage containing the log.gz. I tested it with different namespaces. Only one time, Velero has created velero-backup.json and the tar.gz with the data. In all other tests, the backup info had the value Failed for the phase. The log failed contained only messages of type info.
The connection to Azure blob Storage seems to be ok as the Velero is creating the folders and logs. One run contained also the backup info (velero-backup.json and xxxxx.tar.gz).
Here is the info from
As I understand the log entries related to the backup location is related to following issue: vmware-tanzu/helm-charts#168 Any idea why Velero is only adding the log files at the Azure Blob Storage? Patrick |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Check the memory limit on the Velero pod ( If it's 256Mi, it needs to be increased for the Azure plug-in to work properly. This was fixed in Velero 1.5.3. |
Beta Was this translation helpful? Give feedback.
Check the memory limit on the Velero pod (
kubectl describe -n velero deployment.apps/velero
). You should see:Limits:
cpu: 1
memory: 512Mi
If it's 256Mi, it needs to be increased for the Azure plug-in to work properly. This was fixed in Velero 1.5.3.