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
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,11 +11,13 @@ Uses @mattlqx's [docker image](https://ghcr.io/mattlqx/docker-pixelfed) which is
11
11
12
12
- includes bitnami subcharts for [valkey](https://github.com/bitnami/charts/blob/main/bitnami/valkey/README.md#parameters) (redis) and [postgresql](https://github.com/bitnami/charts/blob/main/bitnami/postgresql/README.md#parameters) (database)
13
13
- but you can also bring your own valkey, redis, or postgresql database
14
+
- we're also looking for anyone who wants to test the mariadb subchart
14
15
- helm parameter (values.yaml) docs autogenerated via [`helm-docs`](https://github.com/norwoodj/helm-docs) in [`README.md`](./charts/pixelfed/README.md)
15
16
- use existing Secrets for valkey, postgresql, and mail (smtp)
16
17
- RenovateBot keeps the subcharts and docker image up to date
17
18
- configurable liveness and readiness probes (or none at all)
18
19
- configure tolerations, affinity, nodeselectors
20
+
- configure persistence with a PVC we create, or bring your own
19
21
- use extra volumes, volumemounts, containers, initContainers
@@ -78,6 +78,11 @@ A Helm chart for deploying Pixelfed on Kubernetes
78
78
| mariadb.enabled | bool |`false`| enable mariadb subchart - currently experimental for this chart read more about the values: https://github.com/bitnami/charts/tree/main/bitnami/mariadb|
79
79
| nameOverride | string |`""`| This is to override the chart name. |
80
80
| nodeSelector | object |`{}`| put the pixelfed pod on a specific node/nodegroup |
81
+
| persistence.accessModes | list |`["ReadWriteOnce"]`| accessMode |
82
+
| persistence.enabled | bool |`false`| enable persistence for the pixelfed pod |
83
+
| persistence.existingClaim | string |`""`| using an existing PVC instead of creating one with this chart |
84
+
| persistence.storage | string |`"2Gi"`| size of the persistent volume claim to create. Tgnored if persistence.existingClaim is set |
85
+
| persistence.storageClassName | string |`""`| storage class name |
81
86
| phpConfigs | object |`{}`| PHP Configuration files Will be injected in /usr/local/etc/php-fpm.d |
82
87
| pixelfed.account_deletion | bool |`true`| Enable account deletion (may be a requirement in some jurisdictions) |
0 commit comments