Skip to content

Commit

Permalink
Merge pull request #42 from hughdanliu/release-1.0
Browse files Browse the repository at this point in the history
Release 1.0.0 part 2/3: helm and kustomize
  • Loading branch information
k8s-ci-robot authored Jun 30, 2023
2 parents 05815fc + 651ec47 commit c7db783
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
10 changes: 9 additions & 1 deletion charts/aws-fsx-openzfs-csi-driver/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# Helm chart

# v1.0.0
* Use driver v1.0.0
* Add driver modes for controller and node pods
* Allow for json logging
* Added support for node startup taint (please see install documentation for more information)
* Adopt Kubernetes recommended labels
* Remove hostNetwork: true from the node daemonset
* Allow users to specify the AWS region in the controller deployment

# v0.1.0
* Released the AWS FSx for OpenZFS CSI Driver with helm support
4 changes: 2 additions & 2 deletions charts/aws-fsx-openzfs-csi-driver/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
appVersion: 0.1.0
appVersion: 1.0.0
name: aws-fsx-openzfs-csi-driver
description: A Helm chart for the AWS FSx for OpenZFS CSI Driver
version: 0.1.0
version: 1.0.0
kubeVersion: ">=1.17.0-0"
home: https://github.com/kubernetes-sigs/aws-fsx-openzfs-csi-driver
sources:
Expand Down
2 changes: 1 addition & 1 deletion charts/aws-fsx-openzfs-csi-driver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
image:
repository: public.ecr.aws/fsx-csi-driver/aws-fsx-openzfs-csi-driver
# Overrides the image tag whose default is v{{ .Chart.AppVersion }}
tag: v0.1.0
tag: v1.0.0
pullPolicy: IfNotPresent

csidriver:
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/base/controller-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ spec:
runAsUser: 1000
containers:
- name: fsx-openzfs-plugin
image: public.ecr.aws/fsx-csi-driver/aws-fsx-openzfs-csi-driver:v0.1.0
image: public.ecr.aws/fsx-csi-driver/aws-fsx-openzfs-csi-driver:v1.0.0
imagePullPolicy: IfNotPresent
args:
- --mode=controller
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/base/node-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ spec:
runAsUser: 0
containers:
- name: fsx-openzfs-plugin
image: public.ecr.aws/fsx-csi-driver/aws-fsx-openzfs-csi-driver:v0.1.0
image: public.ecr.aws/fsx-csi-driver/aws-fsx-openzfs-csi-driver:v1.0.0
imagePullPolicy: IfNotPresent
args:
- --mode=node
Expand Down

0 comments on commit c7db783

Please sign in to comment.