Skip to content

Commit

Permalink
Merge pull request #2714 from andyzhangx/upgrade-snapshot-v8.2.0
Browse files Browse the repository at this point in the history
feat: upgrade to snapshot v8.2.0
  • Loading branch information
andyzhangx authored Dec 13, 2024
2 parents 254dfa1 + ebf7d07 commit abdabf1
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions charts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,10 @@ The following table lists the configurable parameters of the latest Azure Disk C
| `node.logLevel` | node driver log level |`5` |
| `snapshot.enabled` | whether enable snapshot feature | `false` |
| `snapshot.image.csiSnapshotter.repository` | csi-snapshotter container image | `/oss/kubernetes-csi/csi-snapshotter` |
| `snapshot.image.csiSnapshotter.tag` | csi-snapshotter container image tag | `v8.1.0` |
| `snapshot.image.csiSnapshotter.tag` | csi-snapshotter container image tag | `v8.2.0` |
| `snapshot.image.csiSnapshotter.pullPolicy` | csi-snapshotter image pull policy | `IfNotPresent` |
| `snapshot.image.csiSnapshotController.repository` | snapshot-controller container image | `/oss/kubernetes-csi/snapshot-controller` |
| `snapshot.image.csiSnapshotController.tag` | snapshot-controller container image tag | `v8.1.0` |
| `snapshot.image.csiSnapshotController.tag` | snapshot-controller container image tag | `v8.2.0` |
| `snapshot.image.csiSnapshotController.pullPolicy` | snapshot-controller image pull policy | `IfNotPresent` |
| `snapshot.snapshotController.name` | snapshot controller name | `csi-snapshot-controller` |
| `snapshot.snapshotController.replicas` | the replicas of snapshot-controller | `2` |
Expand Down
Binary file modified charts/latest/azuredisk-csi-driver-v0.0.0.tgz
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ rules:
verbs: ["patch"]
- apiGroups: ["snapshot.storage.k8s.io"]
resources: ["volumesnapshots"]
verbs: ["get", "list", "watch", "update", "patch"]
verbs: ["get", "list", "watch", "update", "patch", "create"]
- apiGroups: ["snapshot.storage.k8s.io"]
resources: ["volumesnapshots/status"]
verbs: ["update", "patch"]
Expand Down
4 changes: 2 additions & 2 deletions charts/latest/azuredisk-csi-driver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,11 @@ snapshot:
image:
csiSnapshotter:
repository: /oss/kubernetes-csi/csi-snapshotter
tag: v8.1.0
tag: v8.2.0
pullPolicy: IfNotPresent
csiSnapshotController:
repository: /oss/kubernetes-csi/snapshot-controller
tag: v8.1.0
tag: v8.2.0
pullPolicy: IfNotPresent
snapshotController:
name: csi-snapshot-controller
Expand Down
2 changes: 1 addition & 1 deletion deploy/csi-azuredisk-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ spec:
drop:
- ALL
- name: csi-snapshotter
image: mcr.microsoft.com/oss/kubernetes-csi/csi-snapshotter:v8.1.0
image: mcr.microsoft.com/oss/kubernetes-csi/csi-snapshotter:v8.2.0
args:
- "-csi-address=$(ADDRESS)"
- "-leader-election"
Expand Down
2 changes: 1 addition & 1 deletion deploy/csi-snapshot-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ spec:
effect: "NoSchedule"
containers:
- name: csi-snapshot-controller
image: mcr.microsoft.com/oss/kubernetes-csi/snapshot-controller:v8.1.0
image: mcr.microsoft.com/oss/kubernetes-csi/snapshot-controller:v8.2.0
args:
- "--v=2"
- "--leader-election=true"
Expand Down
2 changes: 1 addition & 1 deletion deploy/rbac-csi-snapshot-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ rules:
verbs: ["patch"]
- apiGroups: ["snapshot.storage.k8s.io"]
resources: ["volumesnapshots"]
verbs: ["get", "list", "watch", "update", "patch"]
verbs: ["get", "list", "watch", "update", "patch", "create"]
- apiGroups: ["snapshot.storage.k8s.io"]
resources: ["volumesnapshots/status"]
verbs: ["update", "patch"]
Expand Down

0 comments on commit abdabf1

Please sign in to comment.