From 8489a4c5838a2319ec2f107431f2fe17cbaccf66 Mon Sep 17 00:00:00 2001 From: mskanth972 Date: Fri, 25 Oct 2024 14:41:51 -0400 Subject: [PATCH] Pre-release PR for v2.1.0 --- CHANGELOG-2.x.md | 4 ++++ Makefile | 2 +- docs/README.md | 6 ++++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG-2.x.md b/CHANGELOG-2.x.md index 028cce6ae..81f24d9c8 100644 --- a/CHANGELOG-2.x.md +++ b/CHANGELOG-2.x.md @@ -1,3 +1,7 @@ +# V2.1.0 +* Update CodeQL workflow to v2. ([#1485](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1485),[@mskanth972](https://github.com/mskanth972)) +* Bump side-cars to the latest. ([#1484](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1484),[@mskanth972](https://github.com/mskanth972)) +* Update kubernetes to version 1.27.16 to patch CVE-2024-5321. ([#1475](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1475),[@mselim00](https://github.com/mselim00)) # V2.0.9 * Upgrade AL2 version and address CVEs (CVE-2024-34156, CVE-2024-34158) * Fix controller template to support replicaCount, resources, topologySpreadConstraints diff --git a/Makefile b/Makefile index 776abdce9..5af7bac73 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ # limitations under the License. # -VERSION=v2.0.9 +VERSION=v2.1.0 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 720494ca5..4be291c8b 100644 --- a/docs/README.md +++ b/docs/README.md @@ -71,6 +71,7 @@ The following sections are Kubernetes specific. If you are a Kubernetes user, us | Amazon EFS CSI Driver \ Kubernetes Version | maturity | v1.11 | v1.12 | v1.13 | v1.14 | v1.15 | v1.16 | v1.17+ | |--------------------------------------------|----------|-------|-------|-------|-------|-------|-------|--------| | master branch | GA | no | no | no | no | no | no | yes | +| v2.1.x | GA | no | no | no | no | no | no | yes | | v2.0.x | GA | no | no | no | no | no | no | yes | | v1.7.x | GA | no | no | no | no | no | no | yes | | v1.6.x | GA | no | no | no | no | no | no | yes | @@ -88,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.0 | amazon/aws-efs-csi-driver:v2.1.0 | | v2.0.9 | amazon/aws-efs-csi-driver:v2.0.9 | | v2.0.8 | amazon/aws-efs-csi-driver:v2.0.8 | | v2.0.7 | amazon/aws-efs-csi-driver:v2.0.7 | @@ -148,7 +150,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.9 | public.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver:v2.0.9 | +| v2.1.0 | public.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver:v2.1.0 | **Note** You can find previous efs-csi-driver versions' images from [here](https://gallery.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver) @@ -367,7 +369,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.9`) 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.0`) in the yaml file, and deploy driver yaml again: ```sh kubectl apply -f driver.yaml ```