diff --git a/CHANGELOG-1.x.md b/CHANGELOG-1.x.md index e320ab61f..b415c9e97 100644 --- a/CHANGELOG-1.x.md +++ b/CHANGELOG-1.x.md @@ -1,3 +1,6 @@ +# V1.7.5 +* Allow controller SA to describe Secrets - fixes cross account dynamic provisioning. ([#1256](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1256), [@RyanStan](https://github.com/RyanStan)) +* Added Fargate support for EFS CSI Controller. ([#1195](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1195), [@Rio Maulana](https://github.com/rimaulana)) # V1.7.4 * Bump the side-cars to the latest to mitigate the CVEs. ([#1246](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1246), [@mskanth972](https://github.com/mskanth972)) * Update efs-csi-driver to use efs-utils latest release v1.35.1 which include adding 'fsap' to the ignored mount option list, compatibility with OpenSSL 3.0 in the RPM spec file, a new watchdog log message for outdated efs-utils versions, and regeneration of empty private key files. diff --git a/Makefile b/Makefile index 60e3534cc..c933b4310 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ # limitations under the License. # -VERSION=v1.7.4 +VERSION=v1.7.5 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 a448028e5..13d0105e9 100644 --- a/docs/README.md +++ b/docs/README.md @@ -90,6 +90,7 @@ The following sections are Kubernetes specific. If you are a Kubernetes user, us | EFS CSI Driver Version | Image | |------------------------|----------------------------------| | master branch | amazon/aws-efs-csi-driver:master | +| v1.7.5 | amazon/aws-efs-csi-driver:v1.7.5 | | v1.7.4 | amazon/aws-efs-csi-driver:v1.7.4 | | v1.7.3 | amazon/aws-efs-csi-driver:v1.7.3 | | v1.7.2 | amazon/aws-efs-csi-driver:v1.7.2 | @@ -137,7 +138,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 | |----------------|-------------------------------------------------------------------------------| -| v1.7.4 | public.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver:v1.7.4 | +| v1.7.5 | public.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver:v1.7.5 | #### Note : You can find previous efs-csi-driver versions' images from [here](https://gallery.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver) @@ -364,7 +365,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-1.7" > 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:v1.7.4`) 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:v1.7.5`) in the yaml file, and deploy driver yaml again: ```sh kubectl apply -f driver.yaml ```