FoundationDB / fdb-kubernetes-operator

A kubernetes operator for FoundationDB
Apache License 2.0
240 stars 83 forks source link

Allow to specify additional HTTP params in backup #931

Closed johscheuer closed 2 years ago

johscheuer commented 2 years ago

FoundationDB backup supports additional http params in the URL (https://apple.github.io/foundationdb/backups.html#backup-urls) we should support this by adding an additional field with the following struct (we would allow a list of these parameters in the backups spec):

type BackupHTTPParameter struct {
    Key string
    Value string
}

The parameters must be added here: https://github.com/FoundationDB/fdb-kubernetes-operator/blob/3dbde38af53bbe289d99d24754b7ccd80ed3d435/api/v1beta1/foundationdbbackup_types.go#L203-L206

johscheuer commented 2 years ago

Duplicate of: https://github.com/FoundationDB/fdb-kubernetes-operator/issues/181