Skip to content

Commit c7db783

Browse files
authored
Merge pull request #42 from hughdanliu/release-1.0
Release 1.0.0 part 2/3: helm and kustomize
2 parents 05815fc + 651ec47 commit c7db783

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed
Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Helm chart
2-
32
# v1.0.0
3+
* Use driver v1.0.0
4+
* Add driver modes for controller and node pods
5+
* Allow for json logging
6+
* Added support for node startup taint (please see install documentation for more information)
7+
* Adopt Kubernetes recommended labels
8+
* Remove hostNetwork: true from the node daemonset
9+
* Allow users to specify the AWS region in the controller deployment
10+
11+
# v0.1.0
412
* Released the AWS FSx for OpenZFS CSI Driver with helm support

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: 0.1.0
2+
appVersion: 1.0.0
33
name: aws-fsx-openzfs-csi-driver
44
description: A Helm chart for the AWS FSx for OpenZFS CSI Driver
5-
version: 0.1.0
5+
version: 1.0.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: v0.1.0
8+
tag: v1.0.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:v0.1.0
63+
image: public.ecr.aws/fsx-csi-driver/aws-fsx-openzfs-csi-driver:v1.0.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:v0.1.0
48+
image: public.ecr.aws/fsx-csi-driver/aws-fsx-openzfs-csi-driver:v1.0.0
4949
imagePullPolicy: IfNotPresent
5050
args:
5151
- --mode=node

0 commit comments

Comments
 (0)