Skip to content

Commit

Permalink
Update documentation and changelog for release v2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jrakas-dev committed Dec 3, 2024
1 parent f49f9f2 commit 27bf32b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG-2.x.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# V2.1.1
* Fix volume delete failure for static provisioning when accessPointId is empty ([#1507](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1507), [@dankova22](https://github.com/dankova22))
* Update Go and dependencies to address CVEs ([#1513](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1513), [@andrewjamesbrown](https://github.com/andrewjamesbrown))
* Add metadata.namespace to chart templates ([#1376](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1376), [@Kellen275](https://github.com/Kellen275))
* Adding new argument for csi provisioner ([#1512](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1512), [@mskanth972](https://github.com/mskanth972))
* Add permissions to all GitHub actions ([#1508](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1508), [@mskanth972](https://github.com/mskanth972))
* Add additional arguments for Side cars ([#1506](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1506), [@mskanth972](https://github.com/mskanth972))
* Fix controller podLabels typo in values.yaml ([#1445](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1445), [@pvickery-ParamountCommerce](https://github.com/pvickery-ParamountCommerce))
* Add anti-affinity for incompatible compute types ([#1496](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1496), [@abhinavmpandey08](https://github.com/abhinavmpandey08))
* Update python base images to newer versions ([#1480](https://github.com/kubernetes-sigs/aws-efs-csi-driver/pull/1480), [@andrewjamesbrown](https://github.com/andrewjamesbrown))
# 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))
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.
#

VERSION=v2.1.0
VERSION=v2.1.1

PKG=github.com/kubernetes-sigs/aws-efs-csi-driver
GIT_COMMIT?=$(shell git rev-parse HEAD)
Expand Down
5 changes: 3 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1 | amazon/aws-efs-csi-driver:v2.1.1 |
| 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 |
Expand Down Expand Up @@ -150,7 +151,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.0 | public.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver:v2.1.0 |
| v2.1.1 | public.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver:v2.1.1 |

**Note**
You can find previous efs-csi-driver versions' images from [here](https://gallery.ecr.aws/efs-csi-driver/amazon/aws-efs-csi-driver)
Expand Down Expand Up @@ -369,7 +370,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.0`) 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.1`) in the yaml file, and deploy driver yaml again:
```sh
kubectl apply -f driver.yaml
```
Expand Down

0 comments on commit 27bf32b

Please sign in to comment.