From d653a14c165967f666b672cd2beac11ca6505c66 Mon Sep 17 00:00:00 2001 From: mskanth972 Date: Tue, 23 Apr 2024 17:22:25 -0400 Subject: [PATCH] Pre-release PR for v2.0.1 --- CHANGELOG-1.x.md | 2 ++ Makefile | 2 +- docs/README.md | 5 +++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG-1.x.md b/CHANGELOG-1.x.md index cb6bae005..a1348a6f3 100644 --- a/CHANGELOG-1.x.md +++ b/CHANGELOG-1.x.md @@ -1,3 +1,5 @@ +# 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)) # V2.0.0 * Efs-utils v2.0.0 replaces stunnel, which provides TLS encryptions for mounts, with efs-proxy, a component built in-house at AWS. ([#203](https://github.com/aws/efs-utils/pull/203), [@RyanStan](https://github.com/RyanStan)) * Install Rust and Cargo for building efs-utils v2.0.0 ([#1306](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1306), [@RyanStan](https://github.com/RyanStan)) diff --git a/Makefile b/Makefile index bcadd5c1e..365605f32 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ # limitations under the License. # -VERSION=v2.0.0 +VERSION=v2.0.1 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 92944f182..fea6a007a 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.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 | | v1.7.6 | amazon/aws-efs-csi-driver:v1.7.6 | @@ -139,7 +140,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.0 | public.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver:v2.0.0 | +| v2.0.1 | public.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver:v2.0.1 | **Note** You can find previous efs-csi-driver versions' images from [here](https://gallery.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver) @@ -357,7 +358,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.0`) 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.1`) in the yaml file, and deploy driver yaml again: ```sh kubectl apply -f driver.yaml ```