Support backup url params in FoundationDBBackup

Currently there is no way to support URL params in the FoundationDBBackup resource definition. I found a workaround by injecting them in the bucket name, but would be cool to have a clean solution.

Notice adding sc=0 in the bucket name, which results in the desired URL:
blobstore://key@s3.us-gov-west-1.amazonaws.com:80/storage-cluster-auto?bucket=fdb-backups&sc=0

apiVersion: apps.foundationdb.org/v1beta1
kind: FoundationDBBackup
metadata:
  name: storage-cluster
spec:
  version: 6.2.20
  clusterName: storage-cluster
  backupName: storage-cluster-auto
  bucket: fdb-backups&sc=0
  accountName: key@s3.us-gov-west-1.amazonaws.com:80

Does this issue cover your needs? https://github.com/FoundationDB/fdb-kubernetes-operator/issues/181

1 Like

Yes that’s exactly what I was looking for. Not a blocker though