Skip to content

Commit 7063103

Browse files
committed
Update kubernetes-zfs-provisioner chart
1 parent 8deba97 commit 7063103

File tree

3 files changed

+11
-12
lines changed

3 files changed

+11
-12
lines changed

charts/kubernetes-zfs-provisioner/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ description: Dynamic ZFS persistent volume provisioner for Kubernetes
1414

1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
17-
version: 2.2.1
17+
version: 2.2.2
1818

1919
# This is the version number of the application being deployed. This version number should be
2020
# incremented each time you make changes to the application.

charts/kubernetes-zfs-provisioner/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# kubernetes-zfs-provisioner
22

3-
![Version: 2.2.1](https://img.shields.io/badge/Version-2.2.1-informational?style=flat-square)
3+
![Version: 2.2.2](https://img.shields.io/badge/Version-2.2.2-informational?style=flat-square)
44

55
Dynamic ZFS persistent volume provisioner for Kubernetes
66

77
## Installation
88

99
```bash
10-
helm repo add zfs-provisioner https://ccremer.github.io/kubernetes-zfs-provisioner
10+
helm repo add zfs-provisioner https://tosih.github.io/kubernetes-zfs-provisioner
1111
helm install kubernetes-zfs-provisioner zfs-provisioner/kubernetes-zfs-provisioner
1212
```
1313

@@ -32,12 +32,12 @@ Document your changes in values.yaml and let `make docs:helm` generate this sect
3232
| hostAliases | object | `{}` | A dict with `{ip, hostnames array}` to configure custom entries in /etc/hosts. See [values.yaml](./values.yaml) for an example. |
3333
| image.pullPolicy | string | `"Always"` | |
3434
| image.registry | string | `"ghcr.io"` | Container image registry |
35-
| image.repository | string | `"ccremer/zfs-provisioner"` | Location of the container image |
36-
| image.tag | string | `"v1"` | Container image tag |
35+
| image.repository | string | `"tosih/zfs-provisioner"` | Location of the container image |
36+
| image.tag | string | `"v2.2.2"` | Container image tag |
3737
| imagePullSecrets | list | `[]` | |
3838
| nameOverride | string | `""` | |
3939
| nodeSelector | object | `{}` | Reminder: This has no effect on any PVs, but maybe you want the provisioner pod running on certain nodes. |
40-
| podSecurityContext | object | `{}` | If you encounter **issues with SSH, set `podSecurityContext.fsGroup=100`**, as the SSH files might not be readable to the container user `zfs` with uid 100. |
40+
| podSecurityContext.fsGroup | int | `100` | |
4141
| provisioner.instance | string | `"pv.kubernetes.io/zfs"` | Provisoner instance name if multiple are running (multiple instances are not required for managing multiple ZFS hosts) |
4242
| rbac.create | bool | `false` | **Required for first time deployments** Grant the service account the necessary permissions, |
4343
| replicaCount | int | `1` | Usually `1` is fine |

charts/kubernetes-zfs-provisioner/values.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ replicaCount: 1
77

88
image:
99
# -- Location of the container image
10-
repository: ccremer/zfs-provisioner
10+
repository: tosih/zfs-provisioner
1111
# -- Container image registry
1212
registry: ghcr.io
1313
# -- Container image tag
14-
tag: v1
14+
tag: v2.2.2
1515
pullPolicy: Always
1616

1717
imagePullSecrets: []
@@ -96,10 +96,9 @@ rbac:
9696
# the necessary permissions,
9797
create: false
9898

99-
# -- If you encounter **issues with SSH, set `podSecurityContext.fsGroup=100`**, as the SSH
100-
# files might not be readable to the container user `zfs` with uid 100.
101-
podSecurityContext: {}
102-
# fsGroup: 100
99+
# Container switches over to user `zfs` with uid `100`. Mounted secret must match owner.
100+
podSecurityContext:
101+
fsGroup: 100
103102

104103
securityContext: {}
105104
# capabilities:

0 commit comments

Comments
 (0)