Skip to content

Commit

Permalink
Change example pv.yaml for new iscsi csi driver name
Browse files Browse the repository at this point in the history
Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
  • Loading branch information
humblec committed May 31, 2021
1 parent a5362c2 commit adfacc9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cmd/iscsiplugin/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func main() {
flag.CommandLine.Parse([]string{})

cmd := &cobra.Command{
Use: "ISCSI",
Use: "iscsi.csi.k8s.io",
Short: "CSI based ISCSI driver",
Run: func(cmd *cobra.Command, args []string) {
handle()
Expand Down
2 changes: 1 addition & 1 deletion deploy/csi-iscsi-driverinfo.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
apiVersion: storage.k8s.io/v1beta1
apiVersion: storage.k8s.io/v1
kind: CSIDriver
metadata:
name: iscsi.csi.k8s.io
Expand Down
6 changes: 1 addition & 5 deletions deploy/csi-iscsi-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@ spec:
memory: 20Mi
- name: node-driver-registrar
image: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.1.0
lifecycle:
preStop:
exec:
command: ["/bin/sh", "-c", "rm -rf /registration/iscsi.csi.k8s.io /registration/iscsi.csi.k8s.io-reg.sock"]
args:
- --v=2
- --csi-address=/csi/csi.sock
Expand All @@ -63,7 +59,7 @@ spec:
capabilities:
add: ["SYS_ADMIN"]
allowPrivilegeEscalation: true
image: quay.io/humble/csi-iscsi:v0.1
image: quay.io/humble/csi-iscsi:v0.2
args:
- "-v=5"
- "--nodeid=$(NODE_ID)"
Expand Down
2 changes: 1 addition & 1 deletion examples/kubernetes/pv.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
capacity:
storage: 1Gi
csi:
driver: ISCSI
driver: iscsi.csi.k8s.io
volumeHandle: iscsi-data-id
volumeAttributes:
targetPortal: "192.168.122.145:3260"
Expand Down

0 comments on commit adfacc9

Please sign in to comment.