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.*