Facing issue while setting Velero on eks cluster

ubuntu@ip-172-31-7-138:~$ helm install velero vmware-tanzu/velero --create-namespace --namespace velero -f values.yaml
coalesce.go:223: warning: destination for velero.configuration.backupStorageLocation is a table. Ignoring non-table value ([map[accessMode:ReadWrite bucket: caCert: config:map credential:map[key: name:] default: name: prefix: provider: validationFrequency:]])
coalesce.go:223: warning: destination for velero.configuration.volumeSnapshotLocation is a table. Ignoring non-table value ([map[config:map name: provider:]])
Error: INSTALLATION FAILED: execution error at (velero/templates/NOTES.txt:78:4):

#################################################################################

BREAKING: The config values passed contained no longer accepted
options. See the messages below for more details.
To verify your updated config is accepted, you can use
the helm template command.

#################################################################################

ERROR: Please make .configuration.backupStorageLocation from map to slice

ERROR: Please make .configuration.volumeSnapshotLocation from map to slice

REMOVED: .configuration.provider has been removed, instead each backupStorageLocation and volumeSnapshotLocation has a provider configured
ubuntu@ip-172-31-7-138:~$

Hi I was also facing this issue.
Its due to the wrong format of backupStorageLocation and volumeSnapshotLocation in vales.yaml
sample that works for me. replace $bucket and $ACCOUNT. Source link: Backup and restore your Amazon EKS cluster resources using Velero | Containers

cat > values.yaml <<EOF
configuration:
backupStorageLocation:

  • bucket: $BUCKET
    provider: aws
    volumeSnapshotLocation:
  • config:
    region: $REGION
    provider: aws
    initContainers:
  • name: velero-plugin-for-aws
    image: velero/velero-plugin-for-aws:v1.7.1
    volumeMounts:
    • mountPath: /target
      name: plugins
      credentials:
      useSecret: false
      serviceAccount:
      server:
      annotations:
      eks.amazonaws.com/role-arn: “arn:aws:iam::${ACCOUNT}:role/eks-velero-backup”
      EOF