Skip to content

Commit b9e5109

Browse files
authored
Merge pull request #457 from kubernetes-sigs/release-1.6
Release 1.6 - part 3/3
2 parents a5ba127 + ff77862 commit b9e5109

File tree

9 files changed

+20
-7
lines changed

9 files changed

+20
-7
lines changed

CHANGELOG-0.x.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# v1.6.0
2+
* Allow the timeout of the CSI driver to be set ([#fd9e97c0](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/commit/fd9e97c0), [@trickybrain](https://github.com/trickybrain))
3+
* Add podLabels parameter ([#94da9385](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/commit/94da9385), [@trickybrain](https://github.com/trickybrain))
4+
* Update dependencies and implement idempotency changes ([#4b3abe29](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/commit/4b3abe29), [@trickybrain](https://github.com/trickybrain))
5+
* Add support for --extra-tags to Helm chart ([#e302bc4e](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/commit/e302bc4e), [@Eric Bailey](https://github.com/Eric Bailey))
6+
* Clean up whitespace in Helm chart values ([#f8e9a864](https://github.com/kubernetes-sigs/aws-fsx-csi-driver/commit/f8e9a864), [@Eric Bailey](https://github.com/Eric Bailey))
7+
18
# v1.5.0
29

310
### Bug fixes

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?=v1.5.0
15+
VERSION?=v1.6.0
1616

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

charts/aws-fsx-csi-driver/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Helm chart
22

3+
# v1.13.0
4+
* Use driver image 1.6.0
5+
36
# v1.12.1
47
* Parameterize controller.extraTags
58

charts/aws-fsx-csi-driver/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v2
2-
appVersion: "1.5.0"
2+
appVersion: "1.6.0"
33
name: aws-fsx-csi-driver
44
description: A Helm chart for AWS FSx for Lustre CSI Driver
5-
version: 1.12.1
5+
version: 1.13.0
66
kubeVersion: ">=1.17.0-0"
77
home: https://github.com/kubernetes-sigs/aws-fsx-csi-driver
88
sources:

charts/aws-fsx-csi-driver/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
image:
66
repository: public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver
7-
tag: "v1.5.0"
7+
tag: "v1.6.0"
88
pullPolicy: IfNotPresent
99

1010
csidriver:

deploy/kubernetes/base/controller-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ spec:
3030
tolerationSeconds: 300
3131
containers:
3232
- name: fsx-plugin
33-
image: public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v1.5.0
33+
image: public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v1.6.0
3434
imagePullPolicy: IfNotPresent
3535
args:
3636
- --mode=controller

deploy/kubernetes/base/node-daemonset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ spec:
3939
- name: fsx-plugin
4040
securityContext:
4141
privileged: true
42-
image: public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v1.5.0
42+
image: public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v1.6.0
4343
imagePullPolicy: IfNotPresent
4444
args:
4545
- --mode=node

docs/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ For installation and deployment instructions, please refer to our [installation
1515
### CSI Specification Compatibility Matrix
1616
| AWS FSx for Lustre CSI Driver \ CSI Version | v0.3.0 | v1.x.x |
1717
|---------------------------------------------|--------|--------|
18+
| v1.6.0 | no | yes |
1819
| v1.5.0 | no | yes |
1920
| v1.4.0 | no | yes |
2021
| v1.3.0 | no | yes |
@@ -49,6 +50,7 @@ The following sections are Kubernetes-specific. If you are a Kubernetes user, us
4950
### Kubernetes Version Compatibility Matrix
5051
| AWS FSx for Lustre CSI Driver \ Kubernetes Version | v1.11 | v1.12 | v1.13 | v1.14-16 | v1.17+ |
5152
|----------------------------------------------------|-------|-------|-------|----------|--------|
53+
| v1.6.0 | no | no | no | no | yes |
5254
| v1.5.0 | no | no | no | no | yes |
5355
| v1.4.0 | no | no | no | no | yes |
5456
| v1.3.0 | no | no | no | no | yes |
@@ -74,6 +76,7 @@ The following sections are Kubernetes-specific. If you are a Kubernetes user, us
7476
### Container Images
7577
| FSx CSI Driver Version | Image |
7678
|------------------------|----------------------------------------------------------|
79+
| v1.6.0 | public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v1.6.0 |
7780
| v1.5.0 | public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v1.5.0 |
7881
| v1.4.0 | public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v1.4.0 |
7982
| v1.3.0 | public.ecr.aws/fsx-csi-driver/aws-fsx-csi-driver:v1.3.0 |

docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ You may deploy the FSx for Lustre CSI driver via Kustomize or Helm
8686

8787
#### Kustomize
8888
```sh
89-
kubectl apply -k "github.com/kubernetes-sigs/aws-fsx-csi-driver/deploy/kubernetes/overlays/stable/?ref=release-1.5"
89+
kubectl apply -k "github.com/kubernetes-sigs/aws-fsx-csi-driver/deploy/kubernetes/overlays/stable/?ref=release-1.6"
9090
```
9191

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

0 commit comments

Comments
 (0)