Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ Maximilian Gindorfer <info@fmj.dev>
STRGZRS
kehralexander <alexanderkehr@alexware.systems>
fty4
koifresh
16 changes: 11 additions & 5 deletions charts/paperless-ngx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,9 @@ Parameters.
| Name | Description | Value |
| ---------------------------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------- |
| `postgresql.enabled` | Enable or disable the PostgreSQL subchart | `true` |
| `postgresql.image.registry` | Registry for the postgres container image | `docker.io` |
| `postgresql.image.repository` | Repository for the postgres container image | `library/postgres` |
| `postgresql.image.tag` | Tag for the postgres container image | `16.4-bookworm` |
| `postgresql.auth.enablePostgresUser` | Assign a password to the "postgres" admin user. Otherwise, remote access will be blocked for this user | `true` |
| `postgresql.auth.postgresPassword` | Password for the "postgres" admin user. Ignored if `auth.existingSecret` is provided | `postgres` |
| `postgresql.auth.username` | Name for a custom user to create | `paperless` |
Expand All @@ -365,11 +368,14 @@ Parameters.

### Bitnami&reg; Redis parameters

| Name | Description | Value |
| --------------------- | ---------------------------------------------------------------------- | ------------ |
| `redis.enabled` | Enable or disable the Redis&reg; subchart | `true` |
| `redis.architecture` | Redis&reg; architecture. Allowed values: `standalone` or `replication` | `standalone` |
| `redis.auth.password` | Redis&reg; password | `paperless` |
| Name | Description | Value |
| ------------------------ | ---------------------------------------------------------------------- | ---------------- |
| `redis.enabled` | Enable or disable the Redis&reg; subchart | `true` |
| `redis.image.registry` | Registry for the redis container image | `docker.io` |
| `redis.image.repository` | Repository for the redis container image | `library/redis` |
| `redis.image.tag` | Tag for the redis container image | `7.2.5-bookworm` |
| `redis.architecture` | Redis&reg; architecture. Allowed values: `standalone` or `replication` | `standalone` |
| `redis.auth.password` | Redis&reg; password | `paperless` |

### Apache&reg; Tika parameters

Expand Down
42 changes: 41 additions & 1 deletion charts/paperless-ngx/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1297,6 +1297,26 @@
"description": "Enable or disable the PostgreSQL subchart",
"default": true
},
"image": {
"type": "object",
"properties": {
"registry": {
"type": "string",
"description": "Registry for the postgres container image",
"default": "docker.io"
},
"repository": {
"type": "string",
"description": "Repository for the postgres container image",
"default": "library/postgres"
},
"tag": {
"type": "string",
"description": "Tag for the postgres container image",
"default": "16.4-bookworm"
}
}
},
"auth": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -1387,6 +1407,26 @@
"description": "Enable or disable the Redis&reg; subchart",
"default": true
},
"image": {
"type": "object",
"properties": {
"registry": {
"type": "string",
"description": "Registry for the redis container image",
"default": "docker.io"
},
"repository": {
"type": "string",
"description": "Repository for the redis container image",
"default": "library/redis"
},
"tag": {
"type": "string",
"description": "Tag for the redis container image",
"default": "7.2.5-bookworm"
}
}
},
"architecture": {
"type": "string",
"description": "Redis&reg; architecture. Allowed values: `standalone` or `replication`",
Expand Down Expand Up @@ -1455,4 +1495,4 @@
}
}
}
}
}
37 changes: 37 additions & 0 deletions charts/paperless-ngx/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -980,6 +980,17 @@ postgresql:
## @param postgresql.enabled Enable or disable the PostgreSQL subchart
##
enabled: true
# Image configuration for the postgres container. Use the official postgres image by default, instead of the bitnami image.
image:
## @param postgresql.image.registry Registry for the postgres container image
##
registry: docker.io
## @param postgresql.image.repository Repository for the postgres container image
##
repository: library/postgres
## @param postgresql.image.tag Tag for the postgres container image
##
tag: 16.4-bookworm
## Authentication parameters
## ref: https://github.com/bitnami/containers/tree/main/bitnami/postgresql#setting-the-root-password-on-first-run
## ref: https://github.com/bitnami/containers/tree/main/bitnami/postgresql#creating-a-database-on-first-run
Expand Down Expand Up @@ -1034,6 +1045,21 @@ postgresql:
## @param postgresql.primary.persistence.size PVC Storage Request for PostgreSQL volume
##
size: 5Gi
# Extra volume mounts for /var/run/postgresql to allow postgres creating a socket while keeping a read only root filesystem
extraVolumeMounts:
## @skip postgresql.primary.extraVolumeMounts[0].name An extra volume mount for the postgres socket
##
- name: postgresql-socket
## @skip postgresql.primary.extraVolumeMounts[0].mountPath The path of the postgres socket
##
mountPath: /var/run/postgresql
extraVolumes:
## @skip postgresql.primary.extraVolumes[0].name An extra volume for the postgres socket
##
- name: postgresql-socket
## @skip postgresql.primary.extraVolumes[0].emptyDir An empty dir mount for the postgres socket
##
emptyDir: {}

## @section Bitnami&reg; Redis parameters
##
Expand All @@ -1044,6 +1070,17 @@ redis:
## @param redis.enabled Enable or disable the Redis&reg; subchart
##
enabled: true
# Image configuration for the redis container. Use the official redis image by default, instead of the bitnami image.
image:
## @param redis.image.registry Registry for the redis container image
##
registry: docker.io
## @param redis.image.repository Repository for the redis container image
##
repository: library/redis
## @param redis.image.tag Tag for the redis container image
##
tag: 7.2.5-bookworm
## @param redis.architecture Redis&reg; architecture. Allowed values: `standalone` or `replication`
##
architecture: standalone
Expand Down