forked from enix/san-iscsi-csi
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: SAS attached volume support Add support for mapping volumes through SAS HBA. Automatic SAS address discovery or manual specification through optional config file.
- Loading branch information
1 parent
2fd40ce
commit edcbd81
Showing
10 changed files
with
294 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,45 @@ | ||
module github.com/Seagate/seagate-exos-x-csi | ||
|
||
go 1.16 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/Seagate/csi-lib-iscsi v1.0.3 | ||
github.com/Seagate/csi-lib-sas v1.0.1 | ||
github.com/Seagate/seagate-exos-x-api-go v1.0.8-0.20220531203625-3d1a38b18ac6 | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/Seagate/seagate-exos-x-api-go v1.0.9 | ||
github.com/container-storage-interface/spec v1.4.0 | ||
github.com/golang/protobuf v1.5.2 | ||
github.com/google/uuid v1.1.2 | ||
github.com/google/uuid v1.3.0 | ||
github.com/grpc-ecosystem/go-grpc-middleware v1.2.2 | ||
github.com/kubernetes-csi/csi-test v0.0.0-20191016154743-6931aedb3df0 | ||
github.com/onsi/gomega v1.10.5 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/prometheus/client_golang v1.11.0 | ||
github.com/prometheus/common v0.32.1 // indirect | ||
github.com/prometheus/procfs v0.7.3 // indirect | ||
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a | ||
golang.org/x/sys v0.0.0-20211124211545-fe61309f8881 // indirect | ||
google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1 // indirect | ||
google.golang.org/grpc v1.42.0 | ||
github.com/prometheus/client_golang v1.13.0 | ||
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f | ||
google.golang.org/grpc v1.50.0 | ||
k8s.io/klog v1.0.0 | ||
) | ||
|
||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/fsnotify/fsnotify v1.4.7 // indirect | ||
github.com/go-logr/logr v1.2.0 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.2 // indirect | ||
github.com/nxadm/tail v1.4.4 // indirect | ||
github.com/onsi/ginkgo v1.12.1 // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/common v0.37.0 // indirect | ||
github.com/prometheus/procfs v0.8.0 // indirect | ||
golang.org/x/net v0.0.0-20220909164309-bea034e7d591 // indirect | ||
golang.org/x/sys v0.0.0-20221010170243-090e33056c14 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
google.golang.org/genproto v0.0.0-20221010155953-15ba04fc1c0e // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
k8s.io/klog/v2 v2.70.0 // indirect | ||
) | ||
|
||
// replace github.com/Seagate/seagate-exos-x-api-go => ../seagate-exos-x-api-go | ||
// replace github.com/Seagate/csi-lib-iscsi => ../csi-lib-iscsi | ||
// replace github.com/Seagate/csi-lib-sas => ../csi-lib-sas |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.