Skip to content

Commit 134de10

Browse files
authored
Merge pull request #67 from lpabon/update-docs
Update docs
2 parents f8ada4f + 6e2b454 commit 134de10

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@ CO developers can use this framework to create drivers based on the
88
[co_test.go](test/co_test.go) for an example.
99

1010
## For CSI Driver Tests
11-
To test drivers please take a look at [pkg/sanity](https://github.com/kubernetes-csi/csi-test/tree/master/pkg/sanity)
11+
To test drivers please take a look at [pkg/sanity](https://github.com/kubernetes-csi/csi-test/tree/master/pkg/sanity).
12+
This package and [csi-sanity](https://github.com/kubernetes-csi/csi-test/tree/master/cmd/csi-sanity) are meant to test
13+
the CSI API capability of a driver. They are meant to be an additional test to the unit, functional, and e2e tests of a
14+
CSI driver.
1215

1316
### Note
1417

15-
* Master is for CSI v0.2.0. Please use the branch v0.1.0 for CSI v0.1.0
18+
* Master is for CSI v0.3.0. Please see the branches for other CSI releases.
1619
* Only Golang 1.9+ supported. See [gRPC issue](https://github.com/grpc/grpc-go/issues/711#issuecomment-326626790)

cmd/csi-sanity/Makefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,13 @@ $(PACKAGE): $(APP_NAME)
4949
linux_amd64_dist:
5050
GOOS=linux GOARCH=amd64 $(MAKE) dist
5151

52-
linux_arm_dist:
53-
GOOS=linux GOARCH=arm $(MAKE) dist
54-
5552
linux_arm64_dist:
5653
GOOS=linux GOARCH=arm64 $(MAKE) dist
5754

5855
darwin_amd64_dist:
5956
GOOS=darwin GOARCH=amd64 $(MAKE) dist
6057

61-
release: dist-clean darwin_amd64_dist linux_arm_dist linux_amd64_dist linux_arm64_dist
58+
release: dist-clean darwin_amd64_dist linux_amd64_dist linux_arm64_dist
6259

6360
.PHONY: release darwin_amd64_dist linux_arm64_dist linux_amd64_dist \
6461
linux_arm_dist linux_amd64_dist clean dist-clean

0 commit comments

Comments
 (0)