Hi
I have AWS eks cluster that I try to export to S3 bucket.
Kubernetes version: 1.19
Kasten version: 4.5.2
StorageClass: ebs-cs. Deriver: EBS CSI.
Kasten installed with helm"
```
helm install k10 kasten/k10 --namespace=kasten-io --set secrets.awsAccessKeyId="<access_key>" --set secrets.awsSecretAccessKey="<secret_key"
```
Additional resources installed:
```
kubectl apply -f https://raw.githubusercontent.com/kubernetes-csi/external-snapshotter/master/client/config/crd/snapshot.storage.k8s.io_volumesnapshotclasses.yaml
kubectl apply -f https://raw.githubusercontent.com/kubernetes-csi/external-snapshotter/master/client/config/crd/snapshot.storage.k8s.io_volumesnapshotcontents.yaml
kubectl apply -f https://raw.githubusercontent.com/kubernetes-csi/external-snapshotter/master/client/config/crd/snapshot.storage.k8s.io_volumesnapshots.yaml
kubectl apply -f https://raw.githubusercontent.com/kubernetes-csi/external-snapshotter/master/deploy/kubernetes/snapshot-controller/rbac-snapshot-controller.yaml
kubectl apply -f https://raw.githubusercontent.com/kubernetes-csi/external-snapshotter/master/deploy/kubernetes/snapshot-controller/setup-snapshot-controller.yaml
```
VolumeSnapshotClass created:
```
apiVersion: snapshot.storage.k8s.io/v1beta1
kind: VolumeSnapshotClass
metadata:
name: test-snapclass
annotations:
k10.kasten.io/is-snapshot-class: "true"
driver: ebs.csi.aws.com
deletionPolicy: Delete
```
I'm able to run backup using Kasten dashboard, but while I try to export application - I get following error:
```
message: 'Failed to create VolumeSnapshotClass:
k10-clone-test-snapclass:
VolumeSnapshotClass.snapshot.storage.k8s.io
"k10-clone-test-snapclass" is invalid:
parameters: Invalid value: "null": parameters
in body must be of type object: "null"'
```