From 69a6ca67f128ac4d110e8f170dda3a65b7d4ddef Mon Sep 17 00:00:00 2001 From: Dan Kovacevich Date: Tue, 7 Jan 2025 22:27:36 +0000 Subject: [PATCH] Update docs and Makefile for release 2.1.4 --- CHANGELOG-2.x.md | 2 ++ Makefile | 2 +- docs/README.md | 5 +++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG-2.x.md b/CHANGELOG-2.x.md index ab47d11f4..6692d757b 100644 --- a/CHANGELOG-2.x.md +++ b/CHANGELOG-2.x.md @@ -1,3 +1,5 @@ +# V2.1.4 +* Upgrade stunnel to 5 ([#1561](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1561), [@dankova22](https://github.com/dankova22)) # V2.1.3 * Fix default value for unhealthyPodEvictionPolicy ([#1524](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1524), [@z0rc](https://github.com/z0rc)) * Switch to adaptive retry mode to reduce throttling errors ([#1520](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1520), [@dankova22](https://github.com/dankova22)) diff --git a/Makefile b/Makefile index 24ddece3f..e6c16e72b 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ # limitations under the License. # -VERSION=v2.1.3 +VERSION=v2.1.4 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 aca51c2db..a8db8f2ba 100644 --- a/docs/README.md +++ b/docs/README.md @@ -89,6 +89,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.4 | amazon/aws-efs-csi-driver:v2.1.4 | | v2.1.3 | amazon/aws-efs-csi-driver:v2.1.3 | | v2.1.2 | amazon/aws-efs-csi-driver:v2.1.2 | | v2.1.1 | amazon/aws-efs-csi-driver:v2.1.1 | @@ -153,7 +154,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.3 | public.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver:v2.1.3 | +| v2.1.4 | public.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver:v2.1.4 | **Note** You can find previous efs-csi-driver versions' images from [here](https://gallery.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver) @@ -378,7 +379,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.3`) 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.4`) in the yaml file, and deploy driver yaml again: ```sh kubectl apply -f driver.yaml ```