Skip to content

Commit 9d0f58c

Browse files
authored
Merge pull request #52 from kubernetes-sigs/release-1.1
Release 1.1 - part 3/3, merge to main
2 parents c432324 + 1d8c0c6 commit 9d0f58c

File tree

10 files changed

+20
-10
lines changed

10 files changed

+20
-10
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# v1.1.0
2+
3+
### Notable changes
4+
* Add support for Multi-AZ ([#49](https://github.com/kubernetes-sigs/aws-fsx-openzfs-csi-driver/pull/49), [@gomesjason](https://github.com/gomesjason/))
5+
* Improved error logging for improperly formatted parameters ([#45](https://github.com/kubernetes-sigs/aws-fsx-openzfs-csi-driver/pull/45), [@hughdanliu](https://github.com/hughdanliu/))
6+
17
# v1.0.0
28

39
### Notable changes

Makefile

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

14-
VERSION?=1.0.0
14+
VERSION?=1.1.0
1515

1616
PKG=github.com/kubernetes-sigs/aws-fsx-openzfs-csi-driver
1717
GIT_COMMIT?=$(shell git rev-parse HEAD)

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,14 @@ The [Amazon FSx for OpenZFS](https://aws.amazon.com/fsx/openzfs/) Container Stor
2020

2121
| Driver Version | [ECR Public](https://gallery.ecr.aws/fsx-csi-driver/aws-fsx-openzfs-csi-driver) Image |
2222
|----------------|---------------------------------------------------------------------------------------|
23-
| v1.0.0 | public.ecr.aws/fsx-csi-driver/aws-fsx-openzfs-csi-driver:v1.0.0 |
23+
| v1.1.0 | public.ecr.aws/fsx-csi-driver/aws-fsx-openzfs-csi-driver:v1.1.0 |
2424

2525
<details>
2626
<summary>Previous Images</summary>
2727

2828
| Driver Version | [ECR Public](https://gallery.ecr.aws/fsx-csi-driver/aws-fsx-openzfs-csi-driver) Image |
2929
|----------------|---------------------------------------------------------------------------------------|
30+
| v1.0.0 | public.ecr.aws/fsx-csi-driver/aws-fsx-openzfs-csi-driver:v1.0.0 |
3031
| v0.1.0 (Beta) | public.ecr.aws/fsx-csi-driver/aws-fsx-openzfs-csi-driver:v0.1.0 |
3132
</details>
3233

RELEASE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ You'll need push privileges for this step.
5252

5353
```
5454
git checkout release-0.7
55-
git pull upstream release-0.7
55+
git pull origin release-0.7
5656
git tag v0.7.0
57-
git push upstream v0.7.0
57+
git push origin v0.7.0
5858
```
5959

6060
## Verify the release on GitHub

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Helm chart
2+
# v1.1.0
3+
* Use driver v1.1.0
4+
25
# v1.0.0
36
* Use driver v1.0.0
47
* Add driver modes for controller and node pods

charts/aws-fsx-openzfs-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.0.0
2+
appVersion: 1.1.0
33
name: aws-fsx-openzfs-csi-driver
44
description: A Helm chart for the AWS FSx for OpenZFS CSI Driver
5-
version: 1.0.0
5+
version: 1.1.0
66
kubeVersion: ">=1.17.0-0"
77
home: https://github.com/kubernetes-sigs/aws-fsx-openzfs-csi-driver
88
sources:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
image:
66
repository: public.ecr.aws/fsx-csi-driver/aws-fsx-openzfs-csi-driver
77
# Overrides the image tag whose default is v{{ .Chart.AppVersion }}
8-
tag: v1.0.0
8+
tag: v1.1.0
99
pullPolicy: IfNotPresent
1010

1111
csidriver:

deploy/kubernetes/base/controller-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ spec:
6060
runAsUser: 1000
6161
containers:
6262
- name: fsx-openzfs-plugin
63-
image: public.ecr.aws/fsx-csi-driver/aws-fsx-openzfs-csi-driver:v1.0.0
63+
image: public.ecr.aws/fsx-csi-driver/aws-fsx-openzfs-csi-driver:v1.1.0
6464
imagePullPolicy: IfNotPresent
6565
args:
6666
- --mode=controller

deploy/kubernetes/base/node-daemonset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ spec:
4545
runAsUser: 0
4646
containers:
4747
- name: fsx-openzfs-plugin
48-
image: public.ecr.aws/fsx-csi-driver/aws-fsx-openzfs-csi-driver:v1.0.0
48+
image: public.ecr.aws/fsx-csi-driver/aws-fsx-openzfs-csi-driver:v1.1.0
4949
imagePullPolicy: IfNotPresent
5050
args:
5151
- --mode=node

docs/install.md

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

9999
#### Kustomize
100100
```sh
101-
kubectl apply -k "github.com/kubernetes-sigs/aws-fsx-openzfs-csi-driver/deploy/kubernetes/overlays/stable/?ref=release-1.0"
101+
kubectl apply -k "github.com/kubernetes-sigs/aws-fsx-openzfs-csi-driver/deploy/kubernetes/overlays/stable/?ref=release-1.1"
102102
```
103103

104104
*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)