diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 7491a7def..b8b5149be 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -23,6 +23,6 @@ jobs: AWS EFS CSI Driver ## CHANGELOG - See [CHANGELOG](https://github.com/kubernetes-sigs/aws-efs-csi-driver/blob/master/CHANGELOG-1.x.md) for full list of changes + See [CHANGELOG](https://github.com/kubernetes-sigs/aws-efs-csi-driver/blob/master/CHANGELOG-2.x.md) for full list of changes draft: false prerelease: false diff --git a/CHANGELOG-2.x.md b/CHANGELOG-2.x.md index 082aa833e..4e9746a46 100644 --- a/CHANGELOG-2.x.md +++ b/CHANGELOG-2.x.md @@ -1,3 +1,6 @@ +# V2.0.2 +* Update the ChangeLog to point to latest. ([#1334](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1334), [@mskanth972](https://github.com/mskanth972)) +* Fix ARM support for EFS CSI Driver. # V2.0.1 * Efs-utils v2.0.1. Disable Nagle's algorithm for efs-proxy TLS mounts to improve latencies. ([#210](https://github.com/aws/efs-utils/pull/210), [@RyanStan](https://github.com/RyanStan)) * Updated the default image to be used from Public AWS ECR Repo instead of DockerHub. ([#1323](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1323), [@mskanth972](https://github.com/mskanth972)) diff --git a/Makefile b/Makefile index 365605f32..83fd969da 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ # limitations under the License. # -VERSION=v2.0.1 +VERSION=v2.0.2 PKG=github.com/kubernetes-sigs/aws-efs-csi-driver GIT_COMMIT?=$(shell git rev-parse HEAD) diff --git a/docs/README.md b/docs/README.md index fea6a007a..b21176cf1 100644 --- a/docs/README.md +++ b/docs/README.md @@ -88,6 +88,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.0.2 | amazon/aws-efs-csi-driver:v2.0.2 | | v2.0.1 | amazon/aws-efs-csi-driver:v2.0.1 | | v2.0.0 | amazon/aws-efs-csi-driver:v2.0.0 | | v1.7.7 | amazon/aws-efs-csi-driver:v1.7.7 | @@ -140,7 +141,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.0.1 | public.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver:v2.0.1 | +| v2.0.2 | public.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver:v2.0.2 | **Note** You can find previous efs-csi-driver versions' images from [here](https://gallery.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver) @@ -358,7 +359,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.0.1`) 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.0.2`) in the yaml file, and deploy driver yaml again: ```sh kubectl apply -f driver.yaml ```