You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 25, 2024. It is now read-only.
chore(helm): use empty/nil storageClass for helm-docs (#3245)
i believe that `nil` would be false in the if :
```yaml
storageClass:
```
is still handled correct.
---
In past ( #3191 ), will have the problem with an empty string `""`:
```yaml
storageClass: ""
```
---
do you take another look @S7evinK ?
Signed-off-by: WrenIX <[email protected]>
| persistence.jetstream|object|`{"capacity":"1Gi","existingClaim":""}`| The storage class to use for volume claims. Used unless specified at the specific component. Defaults to the cluster default storage class. # If defined, storageClassName: <storageClass> # If set to "-", storageClassName: "", which disables dynamic provisioning # If undefined (the default) or set to null, no storageClassName spec is # set, choosing the default provisioner. (gp2 on AWS, standard on # GKE, AWS & OpenStack) # storageClass: ""|
51
+
| persistence.storageClass|string|`nil`| The storage class to use for volume claims. Used unless specified at the specific component. Defaults to the cluster default storage class. If defined, storageClassName: <storageClass> If set to "-", storageClassName: "", which disables dynamic provisioning If undefined (the default) or set to null, no storageClassName spec is set, choosing the default provisioner. (gp2 on AWS, standard on GKE, AWS & OpenStack) |
52
52
| persistence.jetstream.existingClaim | string |`""`| Use an existing volume claim for jetstream |
53
53
| persistence.jetstream.capacity | string |`"1Gi"`| PVC Storage Request for the jetstream volume |
54
+
| persistence.jetstream.storageClass | string |`nil`| The storage class to use for volume claims. Defaults to persistence.storageClass If defined, storageClassName: <storageClass> If set to "-", storageClassName: "", which disables dynamic provisioning If undefined (the default) or set to null, no storageClassName spec is set, choosing the default provisioner. (gp2 on AWS, standard on GKE, AWS & OpenStack) |
54
55
| persistence.media.existingClaim | string |`""`| Use an existing volume claim for media files |
55
56
| persistence.media.capacity | string |`"1Gi"`| PVC Storage Request for the media volume |
57
+
| persistence.media.storageClass | string |`nil`| The storage class to use for volume claims. Defaults to persistence.storageClass If defined, storageClassName: <storageClass> If set to "-", storageClassName: "", which disables dynamic provisioning If undefined (the default) or set to null, no storageClassName spec is set, choosing the default provisioner. (gp2 on AWS, standard on GKE, AWS & OpenStack) |
56
58
| persistence.search.existingClaim | string |`""`| Use an existing volume claim for the fulltext search index |
57
59
| persistence.search.capacity | string |`"1Gi"`| PVC Storage Request for the search volume |
60
+
| persistence.search.storageClass | string |`nil`| The storage class to use for volume claims. Defaults to persistence.storageClass If defined, storageClassName: <storageClass> If set to "-", storageClassName: "", which disables dynamic provisioning If undefined (the default) or set to null, no storageClassName spec is set, choosing the default provisioner. (gp2 on AWS, standard on GKE, AWS & OpenStack) |
58
61
| extraVolumes | list |`[]`| Add additional volumes to the Dendrite Pod |
59
62
| extraVolumeMounts | list |`[]`| Configure additional mount points volumes in the Dendrite Pod |
60
63
| strategy.type | string |`"RollingUpdate"`| Strategy to use for rolling updates (e.g. Recreate, RollingUpdate) If you are using ReadWriteOnce volumes, you should probably use Recreate |
0 commit comments