From 35ed8461c3af1572bfba1ffd66010ef2d7da12f8 Mon Sep 17 00:00:00 2001 From: Sean Zatz Date: Tue, 28 May 2024 20:06:36 +0000 Subject: [PATCH] pre-release PR v2.0.3 --- CHANGELOG-2.x.md | 4 ++++ Makefile | 2 +- docs/README.md | 5 +++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG-2.x.md b/CHANGELOG-2.x.md index 4e9746a46..fe84871fb 100644 --- a/CHANGELOG-2.x.md +++ b/CHANGELOG-2.x.md @@ -1,3 +1,7 @@ +# V2.0.3 +* Expose env, volume, and volume mounts in helm chart for the efs controller and deamonset. ([#1165](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1165), [@cnmcavoy](https://github.com/cnmcavoy)) +* Update golang.org dependency. ([#1355](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1355),[@mskanth972](https://github.com/mskanth972)) +* efs-utils v2.0.2: Check for efs-proxy PIDs when cleaning tunnel state files. ([#219](https://github.com/aws/efs-utils/pull/219), [@anthotse](https://github.com/anthotse)) # 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. diff --git a/Makefile b/Makefile index 83fd969da..5953ddadb 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ # limitations under the License. # -VERSION=v2.0.2 +VERSION=v2.0.3 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 b21176cf1..19db4b329 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.3 | amazon/aws-efs-csi-driver:v2.0.3 | | 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 | @@ -141,7 +142,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.2 | public.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver:v2.0.2 | +| v2.0.3 | public.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver:v2.0.3 | **Note** You can find previous efs-csi-driver versions' images from [here](https://gallery.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver) @@ -359,7 +360,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.2`) 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.3`) in the yaml file, and deploy driver yaml again: ```sh kubectl apply -f driver.yaml ```