From c3ea6bfd195bc032c750fefe78dc47f9b4417da0 Mon Sep 17 00:00:00 2001 From: Jacob Wolf Date: Wed, 21 Feb 2024 20:07:09 +0000 Subject: [PATCH 1/2] Release 1.2.0 part 1/3 --- CHANGELOG-0.x.md | 9 +++++++++ Makefile | 2 +- docs/README.md | 3 +++ docs/install.md | 2 +- 4 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG-0.x.md b/CHANGELOG-0.x.md index a5f4dfe4..17606b91 100644 --- a/CHANGELOG-0.x.md +++ b/CHANGELOG-0.x.md @@ -1,3 +1,12 @@ +# v1.2.0 + +### Bug fixes +* Fix taint removal retry for non-swallowed errors ([#373](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/pull/373), [@jacobwolfaws](https://github.com/jacobwolfaws)) + +### Improvements +* Add retry and background run to node taint removal ([#370](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/pull/370), [@jacobwolfaws](https://github.com/jacobwolfaws)) +* Bump dependencies for v1.2.0 ([#374](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/pull/374), [@jacobwolfaws](https://github.com/jacobwolfaws)) + # v1.1.0 ### Bug fixes diff --git a/Makefile b/Makefile index 62dea021..c9972814 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -VERSION?=v1.1.0 +VERSION?=v1.2.0 PKG=sigs.k8s.io/aws-fsx-csi-driver GIT_COMMIT?=$(shell git rev-parse HEAD) diff --git a/docs/README.md b/docs/README.md index 03b94a5f..f070ce2f 100644 --- a/docs/README.md +++ b/docs/README.md @@ -15,6 +15,7 @@ For installation and deployment instructions, please refer to our [installation ### CSI Specification Compatibility Matrix | AWS FSx for Lustre CSI Driver \ CSI Version | v0.3.0 | v1.x.x | |---------------------------------------------|--------|--------| +| v1.2.0 | no | yes | | v1.1.0 | no | yes | | v1.0.0 | no | yes | | v0.10.1 | no | yes | @@ -45,6 +46,7 @@ The following sections are Kubernetes-specific. If you are a Kubernetes user, us ### Kubernetes Version Compatibility Matrix | AWS FSx for Lustre CSI Driver \ Kubernetes Version | v1.11 | v1.12 | v1.13 | v1.14-16 | v1.17+ | |----------------------------------------------------|-------|-------|-------|----------|--------| +| v1.2.0 | no | no | no | no | yes | | v1.1.0 | no | no | no | no | yes | | v1.0.0 | no | no | no | no | yes | | v0.10.1 | no | no | no | no | yes | @@ -66,6 +68,7 @@ The following sections are Kubernetes-specific. If you are a Kubernetes user, us ### Container Images | FSx CSI Driver Version | Image | |------------------------|----------------------------------------------------------| +| v1.2.0 | public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v1.2.0 | | v1.1.0 | public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v1.1.0 | | v1.0.0 | public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v1.0.0 | | v0.10.1 | public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v0.10.1 | diff --git a/docs/install.md b/docs/install.md index 642265ce..ca516717 100644 --- a/docs/install.md +++ b/docs/install.md @@ -85,7 +85,7 @@ You may deploy the FSx for Lustre CSI driver via Kustomize or Helm #### Kustomize ```sh -kubectl apply -k "github.com/kubernetes-sigs/aws-fsx-csi-driver/deploy/kubernetes/overlays/stable/?ref=release-1.1" +kubectl apply -k "github.com/kubernetes-sigs/aws-fsx-csi-driver/deploy/kubernetes/overlays/stable/?ref=release-1.2" ``` *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.* From 1b85dcdc463e1a95812fb89e3abe35e52631863b Mon Sep 17 00:00:00 2001 From: Jacob Wolf Date: Thu, 22 Feb 2024 19:06:48 +0000 Subject: [PATCH 2/2] Release 1.2.0 part 2/3: helm and kustomize --- charts/aws-fsx-csi-driver/CHANGELOG.md | 3 +++ charts/aws-fsx-csi-driver/Chart.yaml | 4 ++-- charts/aws-fsx-csi-driver/values.yaml | 2 +- deploy/kubernetes/base/controller-deployment.yaml | 2 +- deploy/kubernetes/base/node-daemonset.yaml | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/charts/aws-fsx-csi-driver/CHANGELOG.md b/charts/aws-fsx-csi-driver/CHANGELOG.md index 1a6ffb73..ec1bfb3a 100644 --- a/charts/aws-fsx-csi-driver/CHANGELOG.md +++ b/charts/aws-fsx-csi-driver/CHANGELOG.md @@ -1,5 +1,8 @@ # Helm chart +# v1.9.0 +* Use driver image 1.2.0 + # v1.8.0 * Use driver image 1.1.0 diff --git a/charts/aws-fsx-csi-driver/Chart.yaml b/charts/aws-fsx-csi-driver/Chart.yaml index f38fd361..adf8c5af 100644 --- a/charts/aws-fsx-csi-driver/Chart.yaml +++ b/charts/aws-fsx-csi-driver/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v2 -appVersion: "1.1.0" +appVersion: "1.2.0" name: aws-fsx-csi-driver description: A Helm chart for AWS FSx for Lustre CSI Driver -version: 1.8.0 +version: 1.9.0 kubeVersion: ">=1.17.0-0" home: https://github.com/kubernetes-sigs/aws-fsx-csi-driver sources: diff --git a/charts/aws-fsx-csi-driver/values.yaml b/charts/aws-fsx-csi-driver/values.yaml index dd098b1b..084cb20d 100644 --- a/charts/aws-fsx-csi-driver/values.yaml +++ b/charts/aws-fsx-csi-driver/values.yaml @@ -4,7 +4,7 @@ image: repository: public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver - tag: v1.1.0 + tag: v1.2.0 pullPolicy: IfNotPresent csidriver: diff --git a/deploy/kubernetes/base/controller-deployment.yaml b/deploy/kubernetes/base/controller-deployment.yaml index 6d5d37da..4f0d306f 100644 --- a/deploy/kubernetes/base/controller-deployment.yaml +++ b/deploy/kubernetes/base/controller-deployment.yaml @@ -30,7 +30,7 @@ spec: tolerationSeconds: 300 containers: - name: fsx-plugin - image: public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v1.1.0 + image: public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v1.2.0 imagePullPolicy: IfNotPresent args: - --mode=controller diff --git a/deploy/kubernetes/base/node-daemonset.yaml b/deploy/kubernetes/base/node-daemonset.yaml index 087b82df..e004fea4 100644 --- a/deploy/kubernetes/base/node-daemonset.yaml +++ b/deploy/kubernetes/base/node-daemonset.yaml @@ -28,7 +28,7 @@ spec: - name: fsx-plugin securityContext: privileged: true - image: public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v1.1.0 + image: public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v1.2.0 imagePullPolicy: IfNotPresent args: - --mode=node