Skip to content

Commit 9df5a3c

Browse files
authored
Merge pull request #452 from xing-yang/release-3.0
Update snapshot-controller image to 3.0.3
2 parents a0f93a1 + a13573c commit 9df5a3c

File tree

4 files changed

+29
-5
lines changed

4 files changed

+29
-5
lines changed

CHANGELOG/CHANGELOG-3.0.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# Release notes for v3.0.3
2+
3+
[Documentation](https://kubernetes-csi.github.io)
4+
5+
# Changelog since v3.0.2
6+
7+
## Changes by Kind
8+
9+
### Other Notable Changes
10+
11+
- Update snapshot controller image to 3.0.3. ([#452](https://github.com/kubernetes-csi/external-snapshotter/pull/452), [@xing-yang](https://github.com/xing-yang))
12+
13+
## Dependencies
14+
15+
### Added
16+
_Nothing has changed._
17+
18+
### Changed
19+
_Nothing has changed._
20+
21+
### Removed
22+
_Nothing has changed._
23+
124
# Release notes for v3.0.2
225

326
[Documentation](https://kubernetes-csi.github.io)

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

Lines changed: 4 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: quay.io/k8scsi/csi-provisioner:v1.5.0
75+
image: k8s.gcr.io/sig-storage/csi-provisioner:v2.0.2
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: quay.io/k8scsi/csi-snapshotter:canary
87+
image: k8s.gcr.io/sig-storage/csi-snapshotter:v3.0.3
8888
args:
8989
- "--v=5"
9090
- "--csi-address=$(ADDRESS)"
@@ -97,8 +97,9 @@ spec:
9797
- name: socket-dir
9898
mountPath: /csi
9999
- name: hostpath
100-
image: quay.io/k8scsi/hostpathplugin:v1.2.0
100+
image: k8s.gcr.io/sig-storage/hostpathplugin:v1.4.0
101101
args:
102+
- "--drivername=hostpath.csi.k8s.io"
102103
- "--v=5"
103104
- "--endpoint=$(CSI_ENDPOINT)"
104105
- "--nodeid=$(KUBE_NODE_NAME)"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spec:
2525
serviceAccount: snapshot-controller
2626
containers:
2727
- name: snapshot-controller
28-
image: quay.io/k8scsi/snapshot-controller:canary
28+
image: k8s.gcr.io/sig-storage/snapshot-controller:v3.0.3
2929
args:
3030
- "--v=5"
3131
- "--leader-election=false"

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/validation-webhook:v2.2.0 # change the image if you wish to use your own custom validation server image
20+
image: k8s.gcr.io/sig-storage/validation-webhook:v3.0.3 # change the image if you wish to use your own custom validation server image
2121
args: ['--tls-cert-file=/etc/snapshot-validation-webhook/certs/cert.pem', '--tls-private-key-file=/etc/snapshot-validation-webhook/certs/key.pem']
2222
ports:
2323
- containerPort: 443 # change the port as needed

0 commit comments

Comments
 (0)