From f4f047fdef1b0c12b7e15d9b79e49649bedd61ce Mon Sep 17 00:00:00 2001 From: Drew Sirenko <68304519+AndrewSirenko@users.noreply.github.com> Date: Tue, 15 Oct 2024 09:56:38 -0400 Subject: [PATCH] Release EBS CSI Driver v1.36.0 --- CHANGELOG.md | 14 ++++++++++++++ Makefile | 2 +- README.md | 2 +- charts/aws-ebs-csi-driver/CHANGELOG.md | 5 +++++ charts/aws-ebs-csi-driver/Chart.yaml | 4 ++-- deploy/kubernetes/base/controller.yaml | 2 +- deploy/kubernetes/base/node.yaml | 2 +- docs/install.md | 2 +- 8 files changed, 26 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index affb95d92f..ddbb769e9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# v1.36.0 +### Bug Fixes +* Prevent `VolumeInUse` error when volume is still attaching ([#2183](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2183), [@ConnorJC3](https://github.com/ConnorJC3)) +* Add v1 Karpenter disrupted taint to pre-stop hook ([#2166](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2166), [@AndrewSirenko](https://github.com/AndrewSirenko)) + +### Improvements +* Update example policy for IAM change ([#2163](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2163), [@ConnorJC3](https://github.com/ConnorJC3)) +* Add EnableFSRs to example policy ([#2168](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2168), [@ConnorJC3](https://github.com/ConnorJC3)) +* Add m8g, c8g, x8g, g6e, and p5e attachment limits ([#2181](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2181), [@AndrewSirenko](https://github.com/AndrewSirenko)) +* Update FAQ to include section on Volume Attachment Capacity Issues ([#2169](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2169), [@torredil](https://github.com/torredil)) +* Use protobuf content type instead of json for k8s client ([#2138](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2138), [@bhavi-koduru](https://github.com/bhavi-koduru)) +* Update dependencies ahead of v1.36 ([#2182](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2182), [@AndrewSirenko](https://github.com/AndrewSirenko)) +* Migrate to kubekins-e2e-v2 ([#2177](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2177), [@AndrewSirenko](https://github.com/AndrewSirenko)) + # v1.35.0 ### Notable Changes * Add legacy-xfs driver option for clusters that mount XFS volumes to nodes with Linux kernel <= 5.4. Warning: This is a temporary workaround for customers unable to immediately upgrade their nodes. It will be removed in a future release. See [the options documentation](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/blob/release-1.35/docs/options.md) for more details.([#2121](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2121),[@AndrewSirenko](https://github.com/AndrewSirenko)) diff --git a/Makefile b/Makefile index 25d2ab0f1b..8b5d58cd20 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ ## Variables/Functions -VERSION?=v1.35.0 +VERSION?=v1.36.0 PKG=github.com/kubernetes-sigs/aws-ebs-csi-driver GIT_COMMIT?=$(shell git rev-parse HEAD) diff --git a/README.md b/README.md index 3f09ea71ad..f132a96717 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,8 @@ The [Amazon Elastic Block Store](https://aws.amazon.com/ebs/) Container Storage | Driver Version | [registry.k8s.io](https://kubernetes.io/blog/2022/11/28/registry-k8s-io-faster-cheaper-ga/) Image | [ECR Public](https://gallery.ecr.aws/ebs-csi-driver/aws-ebs-csi-driver) Image | |----------------|---------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------| +| v1.36.0 | registry.k8s.io/provider-aws/aws-ebs-csi-driver:v1.36.0 | public.ecr.aws/ebs-csi-driver/aws-ebs-csi-driver:v1.36.0 | | v1.35.0 | registry.k8s.io/provider-aws/aws-ebs-csi-driver:v1.35.0 | public.ecr.aws/ebs-csi-driver/aws-ebs-csi-driver:v1.35.0 | -| v1.34.0 | registry.k8s.io/provider-aws/aws-ebs-csi-driver:v1.34.0 | public.ecr.aws/ebs-csi-driver/aws-ebs-csi-driver:v1.34.0 | ## Releases diff --git a/charts/aws-ebs-csi-driver/CHANGELOG.md b/charts/aws-ebs-csi-driver/CHANGELOG.md index 148c6aefe2..aaa231e08a 100644 --- a/charts/aws-ebs-csi-driver/CHANGELOG.md +++ b/charts/aws-ebs-csi-driver/CHANGELOG.md @@ -1,4 +1,9 @@ # Helm chart +## v2.36.0 +* Bump driver version to `v1.36.0` +* Add recommended autoscalar Tolerations to driver DaemonSet ([#2165](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2165), [@AndrewSirenko](https://github.com/AndrewSirenko)) +* Add support for unhealthyPodEvictionPolicy on PodDisruptionBudget ([#2159](https://github.com/kubernetes-sigs/aws-ebs-csi-driver/pull/2159), [@peterabarr](https://github.com/peterabarr)) + ## v2.35.1 * Fix an issue causing the `csi-attacher` container to get stuck in `CrashLoopBackoff` on clusters with VAC enabled. Users with a VAC-enabled cluster are strongly encouraged to skip `v2.35.0` and/or upgrade directly to `v2.35.1` or later. diff --git a/charts/aws-ebs-csi-driver/Chart.yaml b/charts/aws-ebs-csi-driver/Chart.yaml index bb7de97ad9..9464181aae 100644 --- a/charts/aws-ebs-csi-driver/Chart.yaml +++ b/charts/aws-ebs-csi-driver/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v2 -appVersion: 1.35.0 +appVersion: 1.36.0 name: aws-ebs-csi-driver description: A Helm chart for AWS EBS CSI Driver -version: 2.35.1 +version: 2.36.0 kubeVersion: ">=1.17.0-0" home: https://github.com/kubernetes-sigs/aws-ebs-csi-driver sources: diff --git a/deploy/kubernetes/base/controller.yaml b/deploy/kubernetes/base/controller.yaml index 3c01dbb28c..ecddfd896d 100644 --- a/deploy/kubernetes/base/controller.yaml +++ b/deploy/kubernetes/base/controller.yaml @@ -62,7 +62,7 @@ spec: runAsUser: 1000 containers: - name: ebs-plugin - image: public.ecr.aws/ebs-csi-driver/aws-ebs-csi-driver:v1.35.0 + image: public.ecr.aws/ebs-csi-driver/aws-ebs-csi-driver:v1.36.0 imagePullPolicy: IfNotPresent args: - controller diff --git a/deploy/kubernetes/base/node.yaml b/deploy/kubernetes/base/node.yaml index 88aa7529aa..58ad6c4b21 100644 --- a/deploy/kubernetes/base/node.yaml +++ b/deploy/kubernetes/base/node.yaml @@ -54,7 +54,7 @@ spec: runAsUser: 0 containers: - name: ebs-plugin - image: public.ecr.aws/ebs-csi-driver/aws-ebs-csi-driver:v1.35.0 + image: public.ecr.aws/ebs-csi-driver/aws-ebs-csi-driver:v1.36.0 imagePullPolicy: IfNotPresent args: - node diff --git a/docs/install.md b/docs/install.md index 3dfb6968f2..5c5fa0d164 100644 --- a/docs/install.md +++ b/docs/install.md @@ -77,7 +77,7 @@ You may deploy the EBS CSI driver via Kustomize, Helm, or as an [Amazon EKS mana #### Kustomize ```sh -kubectl apply -k "github.com/kubernetes-sigs/aws-ebs-csi-driver/deploy/kubernetes/overlays/stable/?ref=release-1.35" +kubectl apply -k "github.com/kubernetes-sigs/aws-ebs-csi-driver/deploy/kubernetes/overlays/stable/?ref=release-1.36" ``` *Note: Using the master branch to deploy the driver is not supported as the master branch may contain upcoming features incompatible with the currently released stable version of the driver.*