From 7352682d55d1e652671f99b87375745cf99fcd1d Mon Sep 17 00:00:00 2001 From: Jacob Wolf Date: Thu, 13 Jul 2023 19:25:03 +0000 Subject: [PATCH] Release 1.0.0 part 1/3: CHANGELOG, README, Makefile --- CHANGELOG-0.x.md | 15 ++++++++++++++- Makefile | 2 +- docs/README.md | 5 ++++- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG-0.x.md b/CHANGELOG-0.x.md index fa21f81e..02576a49 100644 --- a/CHANGELOG-0.x.md +++ b/CHANGELOG-0.x.md @@ -1,8 +1,21 @@ +# v1.0.0 +## Notable Changes +* Substantially reduced driver dependencies ([#318](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/pull/318), [@jacobwolfaws](https://github.com/jacobwolfaws)) + +### Improvements +* Added arch prefix to images ([#318](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/pull/318), [@jacobwolfaws](https://github.com/jacobwolfaws)) +* Update go version, dependencies, and bump sidecars ([#338](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/pull/338), [@jacobwolfaws](https://github.com/jacobwolfaws)) +* Remove ebs references from e2e testing ([#339](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/pull/339), [@jacobwolfaws](https://github.com/jacobwolfaws)) + +### Acknowledgments +* We would like to sincerely thank: + [@jaxesn](https://github.com/jaxesn) + # v0.10.1 ### Announcement To improve the security of the container images, the base image will be substantially reduced in scope to only contain the necessary driver dependencies in an upcoming release. -**The CSI driver image should only be used in the CSI driver Deployment and Daemonset pods as documented in our Helm chart and Kustomize manifests. While this change won’t negatively impact workloads that rely on volumes managed by the FSx for Lustre CSI Driver, it may break unsupported uses of the CSI driver image outside of the aforementioned official deployment methods.** +**The CSI driver image should only be used in the CSI driver Deployment and Daemonset pods as documented in our Helm chart and Kustomize manifests. While this change won’t negatively impact workloads that rely on volumes managed by the FSx for Lustre CSI Driver, it may break unsupported uses of the CSI driver image outside the aforementioned official deployment methods.** ### Notable Changes * Add inflight check to node operations ([#325](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/pull/325), [@jacobwolfaws](https://github.com/jacobwolfaws)) diff --git a/Makefile b/Makefile index 4cdb8f50..c511c959 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -VERSION?=v0.10.1 +VERSION?=v1.0.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 89c57e6e..9b0212c3 100644 --- a/docs/README.md +++ b/docs/README.md @@ -14,6 +14,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.0.0 | no | yes | | v0.10.1 | no | yes | | v0.10.0 | no | yes | | v0.9.0 | no | yes | @@ -42,6 +43,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.0.0 | no | no | no | no | yes | | v0.10.1 | no | no | no | no | yes | | v0.10.0 | no | no | no | no | yes | | v0.9.0 | no | no | no | no | yes | @@ -61,6 +63,7 @@ The following sections are Kubernetes-specific. If you are a Kubernetes user, us ### Container Images | FSx CSI Driver Version | Image | |------------------------|----------------------------------------------------------| +| 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 | | v0.10.0 | public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v0.10.0 | | v0.9.0 | public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v0.9.0 | @@ -103,7 +106,7 @@ Before the example, you need to: Please go through [CSI Spec](https://github.com/container-storage-interface/spec/blob/master/spec.md) and [General CSI driver development guideline](https://kubernetes-csi.github.io/docs/Development.html) to get some basic understanding of CSI driver before you start. ### Requirements -* Golang 1.19.0+ +* Golang 1.20.0+ ### Dependency Dependencies are managed through go module. To build the project, first turn on go mod using `export GO111MODULE=on`, to build the project run: `make`