mirror of
https://github.com/rclone/rclone.git
synced 2025-06-26 23:11:39 +02:00
s3: add Exaba provider
This commit is contained in:
parent
d4e2717081
commit
6c36615efe
@ -101,6 +101,9 @@ var providerOption = fs.Option{
|
||||
}, {
|
||||
Value: "Dreamhost",
|
||||
Help: "Dreamhost DreamObjects",
|
||||
}, {
|
||||
Value: "Exaba",
|
||||
Help: "Exaba Object Storage",
|
||||
}, {
|
||||
Value: "FlashBlade",
|
||||
Help: "Pure Storage FlashBlade Object Storage",
|
||||
@ -3598,6 +3601,8 @@ func setQuirks(opt *Options) {
|
||||
urlEncodeListings = false
|
||||
virtualHostStyle = false
|
||||
useAlreadyExists = false // untested
|
||||
case "Exaba":
|
||||
virtualHostStyle = false
|
||||
case "GCS":
|
||||
// Google break request Signature by mutating accept-encoding HTTP header
|
||||
// https://github.com/rclone/rclone/issues/6670
|
||||
|
@ -28,6 +28,8 @@ They should be bound to localhost so they are not accessible externally.
|
||||
| 28632 | TestSwiftAIOsegments |
|
||||
| 28633 | TestSMBKerberos |
|
||||
| 28634 | TestSMBKerberos |
|
||||
| 28635 | TestS3Exaba |
|
||||
| 28636 | TestS3Exaba |
|
||||
| 38081 | TestWebdavOwncloud |
|
||||
|
||||
## Non localhost tests
|
||||
|
30
fstest/testserver/init.d/TestS3Exaba
Executable file
30
fstest/testserver/init.d/TestS3Exaba
Executable file
@ -0,0 +1,30 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
NAME=exaba
|
||||
USER="Use the webui to find the access_key_id"
|
||||
PASS="Use the webui to find the secret_access_key"
|
||||
PORT=28635
|
||||
WEBUIPORT=28636
|
||||
|
||||
. $(dirname "$0")/docker.bash
|
||||
|
||||
start() {
|
||||
docker run --rm -d --name $NAME \
|
||||
-e "CLUSTER_NAME=rclone" \
|
||||
-e "CLUSTER_SIZE_GB=20" \
|
||||
-p 127.0.0.1:${PORT}:9000 \
|
||||
-p 127.0.0.1:${WEBUIPORT}:9006 \
|
||||
exaba/exaba
|
||||
|
||||
echo type=s3
|
||||
echo provider=Exaba
|
||||
echo access_key_id=$USER
|
||||
echo secret_access_key=$PASS
|
||||
echo endpoint=http://127.0.0.1:${PORT}/
|
||||
echo webui=http://127.0.0.1:${WEBUIPORT}/
|
||||
echo _connect=127.0.0.1:${PORT}
|
||||
}
|
||||
|
||||
. $(dirname "$0")/run.bash
|
Loading…
x
Reference in New Issue
Block a user