Skip to content

Commit 37a490e

Browse files
authored
Fix CSI spec versions (#2254)
* Fix CSI spec versions * Bump csi-resizer to v1.8.0 * Fix docker image tag in manila e2e tests
1 parent fa8707b commit 37a490e

File tree

11 files changed

+14
-13
lines changed

11 files changed

+14
-13
lines changed

charts/cinder-csi-plugin/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
appVersion: v1.27.1
33
description: Cinder CSI Chart for OpenStack
44
name: openstack-cinder-csi
5-
version: 2.28.0-alpha.2
5+
version: 2.28.0-alpha.3
66
home: https://github.com/kubernetes/cloud-provider-openstack
77
icon: https://github.com/kubernetes/kubernetes/blob/master/logo/logo.png
88
maintainers:

charts/cinder-csi-plugin/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ csi:
3030
resizer:
3131
image:
3232
repository: registry.k8s.io/sig-storage/csi-resizer
33-
tag: v1.7.0
33+
tag: v1.8.0
3434
pullPolicy: IfNotPresent
3535
resources: {}
3636
extraArgs: {}

charts/manila-csi-plugin/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
appVersion: v1.27.1
33
description: Manila CSI Chart for OpenStack
44
name: openstack-manila-csi
5-
version: 2.28.0-alpha.2
5+
version: 2.28.0-alpha.3
66
home: http://github.com/kubernetes/cloud-provider-openstack
77
icon: https://github.com/kubernetes/kubernetes/blob/master/logo/logo.png
88
maintainers:

charts/manila-csi-plugin/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ controllerplugin:
9292
resizer:
9393
image:
9494
repository: registry.k8s.io/sig-storage/csi-resizer
95-
tag: v1.3.0
95+
tag: v1.8.0
9696
pullPolicy: IfNotPresent
9797
resources: {}
9898
nodeSelector: {}

docs/cinder-csi-plugin/using-cinder-csi-plugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The Cinder CSI Driver is a CSI Specification compliant driver used by Container
3232

3333
## CSI Compatibility
3434

35-
This plugin is compatible with CSI versions v1.3.0, v1.2.0 , v1.1.0, and v1.0.0
35+
This plugin is compatible with CSI v1.8.0
3636

3737
## Downloads
3838

manifests/cinder-csi-plugin/cinder-csi-controllerplugin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ spec:
6969
- mountPath: /var/lib/csi/sockets/pluginproxy/
7070
name: socket-dir
7171
- name: csi-resizer
72-
image: registry.k8s.io/sig-storage/csi-resizer:v1.7.0
72+
image: registry.k8s.io/sig-storage/csi-resizer:v1.8.0
7373
args:
7474
- "--csi-address=$(ADDRESS)"
7575
- "--timeout=3m"

manifests/manila-csi-plugin/csi-controllerplugin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ spec:
6060
- name: plugin-dir
6161
mountPath: /var/lib/kubelet/plugins/manila.csi.openstack.org
6262
- name: resizer
63-
image: "registry.k8s.io/sig-storage/csi-resizer:v1.3.0"
63+
image: "registry.k8s.io/sig-storage/csi-resizer:v1.8.0"
6464
args:
6565
- "--csi-address=$(ADDRESS)"
6666
- "--handle-volume-inuse-error=false"

pkg/csi/cinder/driver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const (
3636

3737
var (
3838
// CSI spec version
39-
specVersion = "1.3.0"
39+
specVersion = "1.8.0"
4040

4141
// Driver version
4242
// Version history:

pkg/csi/manila/driver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ type nonBlockingGRPCServer struct {
8585
}
8686

8787
const (
88-
specVersion = "1.2.0"
88+
specVersion = "1.8.0"
8989
driverVersion = "0.9.0"
9090
topologyKey = "topology.manila.csi.openstack.org/zone"
9191
)

pkg/csi/manila/identityserver.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ package manila
1818

1919
import (
2020
"context"
21+
2122
"github.com/container-storage-interface/spec/lib/go/csi"
2223
"google.golang.org/grpc/codes"
2324
"google.golang.org/grpc/status"

0 commit comments

Comments
 (0)