Skip to content

Commit

Permalink
Merge pull request #81 from humblec/new-rel-1
Browse files Browse the repository at this point in the history
doc: update plugin version in the readme
  • Loading branch information
k8s-ci-robot authored Dec 21, 2021
2 parents 763906d + 02c96a4 commit 09834ec
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,20 @@
## Usage:

### Start ISCSI driver

```
$ sudo ./bin/iscsiplugin --endpoint tcp://127.0.0.1:10000 --nodeid CSINode
```

#### Get plugin info

```
$ csc identity plugin-info --endpoint tcp://127.0.0.1:10000
"ISCSI" "0.1.0"
```

#### NodePublish a volume

```
$ export ISCSI_TARGET="iSCSI Target Server IP (Ex: 10.10.10.10)"
$ export IQN="Target IQN"
Expand All @@ -22,20 +25,23 @@ iscsitestvol
```

#### NodeUnpublish a volume

```
$ csc node unpublish --endpoint tcp://127.0.0.1:10000 --target-path /mnt/iscsi iscsitestvol
iscsitestvol
```

#### Get NodeID

```
$ csc node get-id --endpoint tcp://127.0.0.1:10000
CSINode
```

## Community, discussion, contribution, and support

Learn how to engage with the Kubernetes community on the [community page](http://kubernetes.io/community/).
Learn how to engage with the Kubernetes community on
the [community page](http://kubernetes.io/community/).

You can reach the maintainers of this project at:

Expand All @@ -44,7 +50,9 @@ You can reach the maintainers of this project at:

### Code of conduct

Participation in the Kubernetes community is governed by the [Kubernetes Code of Conduct](code-of-conduct.md).
Participation in the Kubernetes community is governed by
the [Kubernetes Code of Conduct](code-of-conduct.md).

[owners]: https://git.k8s.io/community/contributors/guide/owners.md

[Creative Commons 4.0]: https://git.k8s.io/website/LICENSE
1 change: 0 additions & 1 deletion SECURITY_CONTACTS
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,4 @@
# DO NOT REPORT SECURITY VULNERABILITIES DIRECTLY TO THESE NAMES, FOLLOW THE
# INSTRUCTIONS AT https://kubernetes.io/security/

childsb
saad-ali
2 changes: 1 addition & 1 deletion pkg/iscsi/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const (
)

var (
version = "1.0.0"
version = "0.1.0"
)

func NewDriver(nodeID, endpoint string) *driver {
Expand Down

0 comments on commit 09834ec

Please sign in to comment.