From baf1733bad25edfbee834ce76d436b6646dbe081 Mon Sep 17 00:00:00 2001 From: Jacob Wolf Date: Fri, 23 Jun 2023 15:14:54 +0000 Subject: [PATCH 1/2] Release 0.10.1 part 1/3: CHANGELOG, README, Makefile, install --- CHANGELOG-0.x.md | 18 ++++++++++++++++++ Makefile | 2 +- docs/README.md | 3 +++ 3 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG-0.x.md b/CHANGELOG-0.x.md index 59c0a688..fa21f81e 100644 --- a/CHANGELOG-0.x.md +++ b/CHANGELOG-0.x.md @@ -1,3 +1,21 @@ +# 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.** + +### 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)) +* Allow for extra tags in controller deployment ([#331](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/pull/331), [@jacobwolfaws](https://github.com/jacobwolfaws)) +* Remove hostNetwork from helm and manifests ([#332](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/pull/332), [@jacobwolfaws](https://github.com/jacobwolfaws)) + +### Bug fixes +* Remove ErrFsExistsDiffSize error on incompatible parameter ([#322](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/pull/322), [@jacobwolfaws](https://github.com/jacobwolfaws)) + +### Improvements +* Update log functions ([#320](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/pull/320), [@jacobwolfaws](https://github.com/jacobwolfaws)) +* Bump sidecar images ([#333](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/pull/333), [@jacobwolfaws](https://github.com/jacobwolfaws)) + # v0.10.0 ### Misc. diff --git a/Makefile b/Makefile index 2672dba6..2acb7ee1 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.0 +VERSION?=v0.10.1 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 2d8dd149..89c57e6e 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 | |---------------------------------------------|--------|--------| +| v0.10.1 | no | yes | | v0.10.0 | no | yes | | v0.9.0 | no | yes | | v0.8.3 | no | yes | @@ -41,6 +42,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+ | |----------------------------------------------------|-------|-------|-------|----------|--------| +| v0.10.1 | no | no | no | no | yes | | v0.10.0 | no | no | no | no | yes | | v0.9.0 | no | no | no | no | yes | | v0.8.3 | no | no | no | no | yes | @@ -59,6 +61,7 @@ The following sections are Kubernetes-specific. If you are a Kubernetes user, us ### Container Images | FSx CSI Driver Version | Image | |------------------------|----------------------------------------------------------| +| 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 | | v0.8.3 | public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v0.8.3 | From 7bf2a0e7c4540f2b11ed1ac5e780ad779e6e48fe Mon Sep 17 00:00:00 2001 From: Jacob Wolf Date: Fri, 23 Jun 2023 19:27:05 +0000 Subject: [PATCH 2/2] Change GOPROXY env variable --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2acb7ee1..e67d1ebf 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ BUILD_DATE?=$(shell date -u +"%Y-%m-%dT%H:%M:%SZ") LDFLAGS?="-X ${PKG}/pkg/driver.driverVersion=${VERSION} -X ${PKG}/pkg/cloud.driverVersion=${VERSION} -X ${PKG}/pkg/driver.gitCommit=${GIT_COMMIT} -X ${PKG}/pkg/driver.buildDate=${BUILD_DATE} -s -w" GO111MODULE=on -GOPROXY=direct +GOPROXY=https://proxy.golang.org,direct GOPATH=$(shell go env GOPATH) GOOS=$(shell go env GOOS) GOBIN=$(shell pwd)/bin