Skip to content

Commit

Permalink
Merge pull request #941 from xing-yang/fujitsu
Browse files Browse the repository at this point in the history
Cherry-pick Fujitsu driver from development to master branch
  • Loading branch information
leonwanghui committed Jul 4, 2019
2 parents d8752b7 + 8b56344 commit 827a63c
Show file tree
Hide file tree
Showing 64 changed files with 22,831 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@
name = "github.com/segmentio/kafka-go"
revision = "0b3aacc527812d4040e51211146a43545e82d670"

[[constraint]]
branch = "master"
name = "golang.org/x/crypto"

[prune]
go-tests = true
non-go = true
Expand Down
6 changes: 6 additions & 0 deletions contrib/drivers/drivers.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ package drivers
import (
_ "github.com/opensds/opensds/contrib/backup/multicloud"
"github.com/opensds/opensds/contrib/drivers/ceph"
"github.com/opensds/opensds/contrib/drivers/fujitsu/eternus"
"github.com/opensds/opensds/contrib/drivers/hpe/nimble"
"github.com/opensds/opensds/contrib/drivers/huawei/dorado"
"github.com/opensds/opensds/contrib/drivers/huawei/fusionstorage"
Expand Down Expand Up @@ -103,6 +104,9 @@ func Init(resourceType string) VolumeDriver {
case config.HpeNimbleDriverType:
d = &nimble.Driver{}
break
case config.FujitsuEternusDriverType:
d = &eternus.Driver{}
break
default:
d = &sample.Driver{}
break
Expand All @@ -127,6 +131,8 @@ func Clean(d VolumeDriver) VolumeDriver {
break
case *nimble.Driver:
break
case *eternus.Driver:
break
default:
break
}
Expand Down

0 comments on commit 827a63c

Please sign in to comment.