diff --git a/CHANGELOG-2.x.md b/CHANGELOG-2.x.md index 6c1052c08..028cce6ae 100644 --- a/CHANGELOG-2.x.md +++ b/CHANGELOG-2.x.md @@ -1,3 +1,7 @@ +# V2.0.9 +* Upgrade AL2 version and address CVEs (CVE-2024-34156, CVE-2024-34158) +* Fix controller template to support replicaCount, resources, topologySpreadConstraints +* Migrate to aws-sdk-go-v2. ([#1458](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1458), [@avanish23](https://github.com/avanish23)) # V2.0.8 * Update K8s dependencies. ([#1440](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1440), [@retornam](https://github.com/retornam)) * Add flag that enables CSI driver to be added without using helm hooks ([#1074](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1074), [@woehrl01](https://github.com/woehrl01)) diff --git a/Makefile b/Makefile index 8bfd02486..776abdce9 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ # limitations under the License. # -VERSION=v2.0.8 +VERSION=v2.0.9 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 137fe411e..720494ca5 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.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 | | v2.0.6 | amazon/aws-efs-csi-driver:v2.0.6 | @@ -147,7 +148,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.8 | public.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver:v2.0.8 | +| v2.0.9 | public.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver:v2.0.9 | **Note** You can find previous efs-csi-driver versions' images from [here](https://gallery.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver) @@ -366,7 +367,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.8`) 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.9`) in the yaml file, and deploy driver yaml again: ```sh kubectl apply -f driver.yaml ```