Skip to content

Commit 43fc7f4

Browse files
authored
Merge pull request #340 from jacobwolfaws/release-1.0
Release 1.0.0 part 1/3: CHANGELOG, README, Makefile
2 parents 6c2d1f3 + 7352682 commit 43fc7f4

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

CHANGELOG-0.x.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
1+
# v1.0.0
2+
## Notable Changes
3+
* Substantially reduced driver dependencies ([#318](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/pull/318), [@jacobwolfaws](https://github.com/jacobwolfaws))
4+
5+
### Improvements
6+
* Added arch prefix to images ([#318](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/pull/318), [@jacobwolfaws](https://github.com/jacobwolfaws))
7+
* Update go version, dependencies, and bump sidecars ([#338](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/pull/338), [@jacobwolfaws](https://github.com/jacobwolfaws))
8+
* Remove ebs references from e2e testing ([#339](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/pull/339), [@jacobwolfaws](https://github.com/jacobwolfaws))
9+
10+
### Acknowledgments
11+
* We would like to sincerely thank:
12+
[@jaxesn](https://github.com/jaxesn)
13+
114
# v0.10.1
215

316
### Announcement
417
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.
5-
**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.**
18+
**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.**
619

720
### Notable Changes
821
* Add inflight check to node operations ([#325](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/pull/325), [@jacobwolfaws](https://github.com/jacobwolfaws))

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
VERSION?=v0.10.1
15+
VERSION?=v1.0.0
1616

1717
PKG=sigs.k8s.io/aws-fsx-csi-driver
1818
GIT_COMMIT?=$(shell git rev-parse HEAD)

docs/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ For installation and deployment instructions, please refer to our [installation
1414
### CSI Specification Compatibility Matrix
1515
| AWS FSx for Lustre CSI Driver \ CSI Version | v0.3.0 | v1.x.x |
1616
|---------------------------------------------|--------|--------|
17+
| v1.0.0 | no | yes |
1718
| v0.10.1 | no | yes |
1819
| v0.10.0 | no | yes |
1920
| v0.9.0 | no | yes |
@@ -42,6 +43,7 @@ The following sections are Kubernetes-specific. If you are a Kubernetes user, us
4243
### Kubernetes Version Compatibility Matrix
4344
| AWS FSx for Lustre CSI Driver \ Kubernetes Version | v1.11 | v1.12 | v1.13 | v1.14-16 | v1.17+ |
4445
|----------------------------------------------------|-------|-------|-------|----------|--------|
46+
| v1.0.0 | no | no | no | no | yes |
4547
| v0.10.1 | no | no | no | no | yes |
4648
| v0.10.0 | no | no | no | no | yes |
4749
| 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
6163
### Container Images
6264
| FSx CSI Driver Version | Image |
6365
|------------------------|----------------------------------------------------------|
66+
| v1.0.0 | public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v1.0.0 |
6467
| v0.10.1 | public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v0.10.1 |
6568
| v0.10.0 | public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v0.10.0 |
6669
| 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:
103106
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.
104107

105108
### Requirements
106-
* Golang 1.19.0+
109+
* Golang 1.20.0+
107110

108111
### Dependency
109112
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`

0 commit comments

Comments
 (0)