Skip to content

Commit c879fc3

Browse files
committed
Update manifest
1 parent 1449bcb commit c879fc3

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

deploy/kubernetes/csi-snapshotter/rbac-external-provisioner.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,15 @@ rules:
4242
- apiGroups: ["snapshot.storage.k8s.io"]
4343
resources: ["volumesnapshotcontents"]
4444
verbs: ["get", "list"]
45+
- apiGroups: ["storage.k8s.io"]
46+
resources: ["csinodes"]
47+
verbs: ["get", "list", "watch"]
48+
- apiGroups: [""]
49+
resources: ["nodes"]
50+
verbs: ["get", "list", "watch"]
51+
- apiGroups: ["storage.k8s.io"]
52+
resources: ["volumeattachments"]
53+
verbs: ["get", "list", "watch"]
4554

4655
---
4756
kind: ClusterRoleBinding

deploy/kubernetes/csi-snapshotter/setup-csi-snapshotter.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ spec:
7272
serviceAccount: csi-snapshotter
7373
containers:
7474
- name: csi-provisioner
75-
image: k8s.gcr.io/sig-storage/csi-provisioner:v2.0.2
75+
image: k8s.gcr.io/sig-storage/csi-provisioner:v3.0.0
7676
args:
7777
- "--v=5"
7878
- "--csi-address=$(ADDRESS)"
@@ -84,7 +84,7 @@ spec:
8484
- name: socket-dir
8585
mountPath: /csi
8686
- name: csi-snapshotter
87-
image: k8s.gcr.io/sig-storage/csi-snapshotter:v4.1.1
87+
image: k8s.gcr.io/sig-storage/csi-snapshotter:v4.2.0
8888
args:
8989
- "--v=5"
9090
- "--csi-address=$(ADDRESS)"
@@ -97,7 +97,7 @@ spec:
9797
- name: socket-dir
9898
mountPath: /csi
9999
- name: hostpath
100-
image: k8s.gcr.io/sig-storage/hostpathplugin:v1.4.0
100+
image: k8s.gcr.io/sig-storage/hostpathplugin:v1.7.2
101101
args:
102102
- "--v=5"
103103
- "--endpoint=$(CSI_ENDPOINT)"

deploy/kubernetes/snapshot-controller/setup-snapshot-controller.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ spec:
3333
serviceAccount: snapshot-controller
3434
containers:
3535
- name: snapshot-controller
36-
image: k8s.gcr.io/sig-storage/snapshot-controller:v4.1.1
36+
image: k8s.gcr.io/sig-storage/snapshot-controller:v4.2.0
3737
args:
3838
- "--v=5"
3939
- "--leader-election=true"

deploy/kubernetes/webhook-example/webhook.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
spec:
1818
containers:
1919
- name: snapshot-validation
20-
image: k8s.gcr.io/sig-storage/snapshot-validation-webhook:v4.1.1 # change the image if you wish to use your own custom validation server image
20+
image: k8s.gcr.io/sig-storage/snapshot-validation-webhook:v4.2.0 # change the image if you wish to use your own custom validation server image
2121
imagePullPolicy: IfNotPresent
2222
args: ['--tls-cert-file=/etc/snapshot-validation-webhook/certs/cert.pem', '--tls-private-key-file=/etc/snapshot-validation-webhook/certs/key.pem']
2323
ports:

0 commit comments

Comments
 (0)