Skip to content

Commit

Permalink
Update Cinder CSI driver to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adisky committed Aug 21, 2018
1 parent f0e9645 commit 13e6dd0
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 44 deletions.
80 changes: 41 additions & 39 deletions Gopkg.lock

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

6 changes: 5 additions & 1 deletion Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ ignored = ["k8s.io/cloud-provider-openstack"]

[[constraint]]
name = "github.com/container-storage-interface/spec"
version = "0.2.0"
version = "0.3.0"

[[override]]
name = "github.com/golang/protobuf"
version = "1.1.0"

[[constraint]]
branch = "master"
Expand Down
2 changes: 1 addition & 1 deletion manifests/cinder-csi-plugin/csi-attacher-cinderplugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ spec:
serviceAccount: csi-attacher
containers:
- name: csi-attacher
image: quay.io/k8scsi/csi-attacher:v0.2.0
image: quay.io/k8scsi/csi-attacher:v0.3.0
args:
- "--v=5"
- "--csi-address=$(ADDRESS)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
hostNetwork: true
containers:
- name: driver-registrar
image: quay.io/k8scsi/driver-registrar:v0.2.0
image: quay.io/k8scsi/driver-registrar:v0.3.0
args:
- "--v=5"
- "--csi-address=$(ADDRESS)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ spec:
serviceAccount: csi-provisioner
containers:
- name: csi-provisioner
image: quay.io/k8scsi/csi-provisioner:v0.2.0
image: quay.io/k8scsi/csi-provisioner:v0.3.0
args:
- "--provisioner=csi-cinderplugin"
- "--csi-address=$(ADDRESS)"
Expand Down
2 changes: 1 addition & 1 deletion pkg/csi/cinder/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const (
)

var (
version = "0.2.0"
version = "0.3.0"
)

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

0 comments on commit 13e6dd0

Please sign in to comment.