Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release-1.29] feat: upgrade snapshot version to v6.3.1 #1552

Merged
merged 1 commit into from
Nov 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,10 @@ The following table lists the configurable parameters of the latest Azure File C
| `node.logLevel` | node driver log level |`5` |
| `snapshot.enabled` | whether enable snapshot feature | `false` |
| `snapshot.image.csiSnapshotter.repository` | csi-snapshotter docker image | `/oss/kubernetes-csi/csi-snapshotter` |
| `snapshot.image.csiSnapshotter.tag` | csi-snapshotter docker image tag | `v6.2.2` |
| `snapshot.image.csiSnapshotter.tag` | csi-snapshotter docker image tag | `v6.3.1` |
| `snapshot.image.csiSnapshotter.pullPolicy` | csi-snapshotter image pull policy | `IfNotPresent` |
| `snapshot.image.csiSnapshotController.repository` | snapshot-controller docker image | `/oss/kubernetes-csi/snapshot-controller` |
| `snapshot.image.csiSnapshotController.tag` | snapshot-controller docker image tag | `v6.2.2` |
| `snapshot.image.csiSnapshotController.tag` | snapshot-controller docker image tag | `v6.3.1` |
| `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/azurefile-csi-driver-v1.29.1.tgz
Binary file not shown.
4 changes: 2 additions & 2 deletions charts/latest/azurefile-csi-driver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,11 @@ snapshot:
image:
csiSnapshotter:
repository: /oss/kubernetes-csi/csi-snapshotter
tag: v6.2.2
tag: v6.3.1
pullPolicy: IfNotPresent
csiSnapshotController:
repository: /oss/kubernetes-csi/snapshot-controller
tag: v6.2.2
tag: v6.3.1
pullPolicy: IfNotPresent
snapshotController:
name: csi-snapshot-controller
Expand Down
2 changes: 1 addition & 1 deletion deploy/csi-azurefile-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ spec:
cpu: 10m
memory: 20Mi
- name: csi-snapshotter
image: mcr.microsoft.com/oss/kubernetes-csi/csi-snapshotter:v6.2.2
image: mcr.microsoft.com/oss/kubernetes-csi/csi-snapshotter:v6.3.1
args:
- "-v=2"
- "-csi-address=$(ADDRESS)"
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 @@ -42,7 +42,7 @@ spec:
effect: "NoSchedule"
containers:
- name: csi-snapshot-controller
image: mcr.microsoft.com/oss/kubernetes-csi/snapshot-controller:v6.2.2
image: mcr.microsoft.com/oss/kubernetes-csi/snapshot-controller:v6.3.1
args:
- "--v=2"
- "--leader-election=true"
Expand Down
Loading