Skip to content

Commit 77b1694

Browse files
xinydevcyb70289
authored andcommitted
controllerserver: enable leader election for HA
- enable leader-election for the controller server to ensure high availability - upgrade the sidecar versions to the latest ones Signed-off-by: Xin Yang <Xin.Yang@arm.com> Change-Id: Ia0f0d3054750e0dcb3cd1315d743de89c69e190a Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk-csi/+/19674 Reviewed-by: Kamil Godzwon <kamilx.godzwon@intel.com> Reviewed-by: Antti Kervinen <antti.kervinen@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Yibo Cai <yibo.cai@arm.com>
1 parent 96e33ea commit 77b1694

File tree

9 files changed

+27
-21
lines changed

9 files changed

+27
-21
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ for detailed introduction.
1313

1414
## Supported platforms
1515

16-
This plugin conforms to [CSI Spec v1.6.0](https://github.com/container-storage-interface/spec/blob/v1.6.0/spec.md).
16+
This plugin conforms to [CSI Spec v1.7.0](https://github.com/container-storage-interface/spec/blob/v1.7.0/spec.md).
1717
It is currently developed and tested only on Kubernetes.
1818

1919
This plugin supports `x86_64` and `Arm64` architectures.

charts/spdk-csi/templates/controller-rbac.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ rules:
4949
- apiGroups: ["storage.k8s.io"]
5050
resources: ["volumeattachments"]
5151
verbs: ["get", "list", "watch"]
52+
- apiGroups: ["coordination.k8s.io"]
53+
resources: ["leases"]
54+
verbs: ["get", "watch", "list", "delete", "update", "create"]
5255

5356
---
5457
kind: ClusterRoleBinding

charts/spdk-csi/templates/controller.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ spec:
3030
- "--csi-address=unix:///csi/csi-provisioner.sock"
3131
- "--timeout=30s"
3232
- "--retry-interval-start=500ms"
33-
- "--leader-election=false"
33+
- "--leader-election=true"
34+
- "--leader-election-namespace={{ .Release.Namespace }}"
3435
volumeMounts:
3536
- name: socket-dir
3637
mountPath: /csi
@@ -40,7 +41,8 @@ spec:
4041
args:
4142
- "--v=5"
4243
- "--csi-address=unix:///csi/csi-provisioner.sock"
43-
- "--leader-election=false"
44+
- "--leader-election=true"
45+
- "--leader-election-namespace={{ .Release.Namespace }}"
4446
volumeMounts:
4547
- name: socket-dir
4648
mountPath: /csi

charts/spdk-csi/values.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ image:
88
tag: canary
99
pullPolicy: Never
1010
csiProvisioner:
11-
repository: k8s.gcr.io/sig-storage/csi-provisioner
12-
tag: v2.0.2
11+
repository: registry.k8s.io/sig-storage/csi-provisioner
12+
tag: v3.5.0
1313
pullPolicy: IfNotPresent
1414
csiAttacher:
15-
repository: k8s.gcr.io/sig-storage/csi-attacher
16-
tag: v3.0.0
15+
repository: registry.k8s.io/sig-storage/csi-attacher
16+
tag: v4.3.0
1717
pullPolicy: IfNotPresent
1818
nodeDriverRegistrar:
19-
repository: k8s.gcr.io/sig-storage/csi-node-driver-registrar
20-
tag: v2.0.1
19+
repository: registry.k8s.io/sig-storage/csi-node-driver-registrar
20+
tag: v2.8.0
2121
pullPolicy: IfNotPresent
2222

2323
serviceAccount:

deploy/kubernetes/controller-rbac.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ rules:
5050
- apiGroups: ["storage.k8s.io"]
5151
resources: ["volumeattachments"]
5252
verbs: ["get", "list", "watch"]
53+
- apiGroups: ["coordination.k8s.io"]
54+
resources: ["leases"]
55+
verbs: ["get", "watch", "list", "delete", "update", "create"]
5356

5457
---
5558
kind: ClusterRoleBinding

deploy/kubernetes/controller.yaml

+6-8
Original file line numberDiff line numberDiff line change
@@ -21,37 +21,35 @@ spec:
2121
hostNetwork: true
2222
containers:
2323
- name: spdkcsi-provisioner
24-
image: k8s.gcr.io/sig-storage/csi-provisioner:v2.0.2
24+
image: registry.k8s.io/sig-storage/csi-provisioner:v3.5.0
2525
imagePullPolicy: "IfNotPresent"
2626
args:
2727
- "--v=5"
2828
- "--csi-address=unix:///csi/csi-provisioner.sock"
2929
- "--timeout=30s"
3030
- "--retry-interval-start=500ms"
31-
- "--leader-election=false"
31+
- "--leader-election=true"
3232
volumeMounts:
3333
- name: socket-dir
3434
mountPath: /csi
3535
- name: spdkcsi-snapshotter
36-
image: k8s.gcr.io/sig-storage/csi-snapshotter:v3.0.3
36+
image: registry.k8s.io/sig-storage/csi-snapshotter:v6.2.2
3737
args:
3838
- "--csi-address=unix:///csi/csi-provisioner.sock"
3939
- "--v=5"
4040
- "--timeout=150s"
41-
- "--leader-election=false"
41+
- "--leader-election=true"
4242
imagePullPolicy: "IfNotPresent"
43-
securityContext:
44-
privileged: true
4543
volumeMounts:
4644
- name: socket-dir
4745
mountPath: /csi
4846
- name: spdkcsi-attacher
49-
image: k8s.gcr.io/sig-storage/csi-attacher:v3.0.0
47+
image: registry.k8s.io/sig-storage/csi-attacher:v4.3.0
5048
imagePullPolicy: "IfNotPresent"
5149
args:
5250
- "--v=5"
5351
- "--csi-address=unix:///csi/csi-provisioner.sock"
54-
- "--leader-election=false"
52+
- "--leader-election=true"
5553
volumeMounts:
5654
- name: socket-dir
5755
mountPath: /csi

deploy/kubernetes/node.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
- name: spdkcsi-registrar
2222
securityContext:
2323
privileged: true
24-
image: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.0.1
24+
image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.8.0
2525
imagePullPolicy: "IfNotPresent"
2626
args:
2727
- "--v=5"

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/spdk/spdk-csi
33
go 1.19
44

55
require (
6-
github.com/container-storage-interface/spec v1.6.0
6+
github.com/container-storage-interface/spec v1.7.0
77
github.com/google/uuid v1.3.0
88
github.com/kubernetes-csi/csi-lib-utils v0.7.0
99
github.com/onsi/gomega v1.19.0

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWH
9191
github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs=
9292
github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs=
9393
github.com/container-storage-interface/spec v1.1.0/go.mod h1:6URME8mwIBbpVyZV93Ce5St17xBiQJQY67NDsuohiy4=
94-
github.com/container-storage-interface/spec v1.6.0 h1:vwN9uCciKygX/a0toYryoYD5+qI9ZFeAMuhEEKO+JBA=
95-
github.com/container-storage-interface/spec v1.6.0/go.mod h1:8K96oQNkJ7pFcC2R9Z1ynGGBB1I93kcS6PGg3SsOk8s=
94+
github.com/container-storage-interface/spec v1.7.0 h1:gW8eyFQUZWWrMWa8p1seJ28gwDoN5CVJ4uAbQ+Hdycw=
95+
github.com/container-storage-interface/spec v1.7.0/go.mod h1:JYuzLqr9VVNoDJl44xp/8fmCOvWPDKzuGTwCoklhuqk=
9696
github.com/cpuguy83/go-md2man/v2 v2.0.1/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
9797
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
9898
github.com/creack/pty v1.1.11/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=

0 commit comments

Comments
 (0)