Skip to content
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
7 changes: 6 additions & 1 deletion CHANGELOG-2.x.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# V2.1.15
* Golang upgrade ([#1738](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1738), [@DavidXU12345](https://github.com/DavidXU12345))
* Update efs-utils conf for eu regions DNS ([#1737](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1737), [@dankova22](https://github.com/dankova22))
* Update Dockerfile for new efs-utils dependencies ([#1736](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1736), [@dankova22](https://github.com/dankova22))
* Specify fileSystemId from K8 ConfigMap/Secret ([#1724](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1724), [@aliyajo](https://github.com/aliyajo))
* Add force unmount after timeout option ([#1710](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1710), [@DavidXU12345](https://github.com/DavidXU12345))
# V2.1.14
* Upgrade aws-sdk-go-v2 to latest version ([#1729](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1729), [@DavidXU12345](https://github.com/DavidXU12345))

# V2.1.13
* Update Dependencies ([#1709](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1709), [@zmaguire](https://github.com/zmaguire))
* Set PosixUser.Uid correctly in ListAccessPoints ([#1707](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1707), [@yerzhan7](https://github.com/yerzhan7))
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.
#

VERSION=v2.1.14
VERSION=v2.1.15

PKG=github.com/kubernetes-sigs/aws-efs-csi-driver
GIT_COMMIT?=$(shell git rev-parse HEAD)
Expand Down
5 changes: 3 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ The following sections are Kubernetes specific. If you are a Kubernetes user, us
| Amazon EFS CSI Driver Version | Image |
|-------------------------------|----------------------------------|
| master branch | amazon/aws-efs-csi-driver:master |
| v2.1.15 | amazon/aws-efs-csi-driver:v2.1.15|
| v2.1.14 | amazon/aws-efs-csi-driver:v2.1.14|
| v2.1.13 | amazon/aws-efs-csi-driver:v2.1.13|
| v2.1.12 | amazon/aws-efs-csi-driver:v2.1.12|
Expand Down Expand Up @@ -168,7 +169,7 @@ The following sections are Kubernetes specific. If you are a Kubernetes user, us
### ECR Image
| Driver Version | [ECR](https://gallery.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver) Image |
|----------------|-------------------------------------------------------------------------------|
| v2.1.14 | public.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver:v2.1.14 |
| v2.1.15 | public.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver:v2.1.15 |

**Note**
You can find previous efs-csi-driver versions' images from [here](https://gallery.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver)
Expand Down Expand Up @@ -420,7 +421,7 @@ If you want to update to a specific version, first customize the driver yaml fil
kubectl kustomize "github.com/kubernetes-sigs/aws-efs-csi-driver/deploy/kubernetes/overlays/stable/?ref=release-2.0" > driver.yaml
```

Then, update all lines referencing `image: amazon/aws-efs-csi-driver` to the desired version (e.g., to `image: amazon/aws-efs-csi-driver:v2.1.14`) in the yaml file, and deploy driver yaml again:
Then, update all lines referencing `image: amazon/aws-efs-csi-driver` to the desired version (e.g., to `image: amazon/aws-efs-csi-driver:v2.1.15`) in the yaml file, and deploy driver yaml again:
```sh
kubectl apply -f driver.yaml
```
Expand Down