Skip to content

Commit 11bd508

Browse files
committed
switches from bitnami to cloudpirates repos
1 parent 7849a42 commit 11bd508

File tree

4 files changed

+45
-51
lines changed

4 files changed

+45
-51
lines changed

charts/paperless-ngx/Chart.lock

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
dependencies:
22
- name: common
3-
repository: https://bjw-s.github.io/helm-charts
3+
repository: https://bjw-s-labs.github.io/helm-charts
44
version: 1.5.1
5-
- name: postgresql
6-
repository: https://charts.bitnami.com/bitnami
7-
version: 14.0.5
5+
- name: postgres
6+
repository: oci://registry-1.docker.io/cloudpirates
7+
version: 0.12.0
88
- name: mariadb
9-
repository: https://charts.bitnami.com/bitnami
10-
version: 20.1.1
9+
repository: oci://registry-1.docker.io/cloudpirates
10+
version: 0.6.1
1111
- name: redis
12-
repository: https://charts.bitnami.com/bitnami
13-
version: 20.7.0
14-
digest: sha256:393ade0c071a39f76cc62844ef6d14d85eeb674f099de016e1adac207f04d643
15-
generated: "2025-02-04T16:09:39.211839317Z"
12+
repository: oci://registry-1.docker.io/cloudpirates
13+
version: 0.14.1
14+
digest: sha256:3469991b6bd150085ece625886d62bc40688e40c8557824ce0c1758472df8f95
15+
generated: "2025-11-15T11:08:44.798343772+01:00"

charts/paperless-ngx/Chart.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: "A community-supported supercharged version of paperless: scan, ind
44
home: https://charts.gabe565.com/charts/paperless-ngx/
55
icon: https://raw.githubusercontent.com/paperless-ngx/paperless-ngx/b948750/src-ui/src/assets/logo-notext.svg
66
type: application
7-
version: 0.24.1
7+
version: 0.25.0
88
# renovate datasource=docker depName=ghcr.io/paperless-ngx/paperless-ngx
99
appVersion: 2.14.7
1010
kubeVersion: ">=1.22.0-0"
@@ -14,19 +14,19 @@ keywords:
1414
- paper
1515
dependencies:
1616
- name: common
17-
repository: https://bjw-s.github.io/helm-charts
17+
repository: https://bjw-s-labs.github.io/helm-charts
1818
version: 1.5.1
19-
- name: postgresql
20-
version: 14.0.5
21-
repository: https://charts.bitnami.com/bitnami
22-
condition: postgresql.enabled
19+
- name: postgres
20+
version: 0.12.0
21+
repository: oci://registry-1.docker.io/cloudpirates
22+
condition: postgres.enabled
2323
- name: mariadb
24-
version: 20.1.1
25-
repository: https://charts.bitnami.com/bitnami
24+
version: 0.6.1
25+
repository: oci://registry-1.docker.io/cloudpirates
2626
condition: mariadb.enabled
2727
- name: redis
28-
repository: https://charts.bitnami.com/bitnami
29-
version: 20.7.0
28+
repository: oci://registry-1.docker.io/cloudpirates
29+
version: 0.14.1
3030
condition: redis.enabled
3131
sources:
3232
- https://github.com/paperless-ngx/paperless-ngx

charts/paperless-ngx/templates/common.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ env:
1010
{{- end }}
1111
{{- end }}
1212

13-
{{- if .Values.postgresql.enabled }}
14-
{{- with .Values.postgresql }}
13+
{{- if .Values.postgres.enabled }}
14+
{{- with .Values.postgres }}
1515
PAPERLESS_DBENGINE: postgresql
16-
PAPERLESS_DBHOST: {{ $.Release.Name }}-postgresql
16+
PAPERLESS_DBHOST: {{ $.Release.Name }}-postgres
1717
PAPERLESS_DBNAME: {{ .auth.database }}
1818
PAPERLESS_DBUSER: {{ default "postgres" .auth.username }}
1919
PAPERLESS_DBPASS:
2020
secretKeyRef:
21-
name: {{ .auth.existingSecret | default (printf "%s-postgresql" $.Release.Name) }}
22-
key: {{ if not .auth.password }}postgres-{{ end }}password
21+
name: {{ .auth.existingSecret | default (printf "%s-postgres" $.Release.Name) }}
22+
key: {{ .auth.secretKeys.passwordKey | default "postgres-password" }}
2323
{{- end }}
2424
{{- else if .Values.mariadb.enabled }}
2525
{{- with .Values.mariadb}}
@@ -40,7 +40,7 @@ env:
4040
secretKeyRef:
4141
name: {{ .auth.existingSecret | default (printf "%s-redis" $.Release.Name) }}
4242
key: {{ .auth.existingSecretPasswordKey | default "redis-password" }}
43-
PAPERLESS_REDIS: redis://{{ .auth.username }}:$(A_REDIS_PASSWORD)@{{ $.Release.Name }}-redis-master
43+
PAPERLESS_REDIS: redis://{{ .auth.username }}:$(A_REDIS_PASSWORD)@{{ $.Release.Name }}-redis
4444
{{- end }}
4545
{{- end }}
4646
{{- end -}}

charts/paperless-ngx/values.yaml

Lines changed: 19 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -70,36 +70,35 @@ persistence:
7070
retain: true
7171
mountPath: /usr/src/paperless/export
7272
# storageClass: ""
73-
# accessMode: ReadWriteOnce
74-
# size: 1Gi
73+
accessMode: ReadWriteOnce
74+
size: 1Gi
7575
# -- Configure consume volume settings for the chart under this key.
7676
# @default -- See [values.yaml](./values.yaml)
7777
consume:
7878
enabled: true
7979
retain: true
8080
mountPath: /usr/src/paperless/consume
8181
# storageClass: ""
82-
# accessMode: ReadWriteOnce
83-
# size: 4Gi
82+
accessMode: ReadWriteOnce
83+
size: 4Gi
8484

8585
# -- Enable and configure postgresql database subchart under this key.
8686
# If enabled, the app's db envs will be set for you.
87-
# [[ref]](https://github.com/bitnami/charts/tree/main/bitnami/postgresql)
87+
# [[ref]](https://github.com/CloudPirates-io/helm-charts/tree/main/charts/postgres)
8888
# @default -- See [values.yaml](./values.yaml)
8989
postgresql:
9090
enabled: false
9191
auth:
92-
database: paperless
93-
postgresPassword: changeme
94-
primary:
95-
persistence:
96-
enabled: false
97-
# storageClass: ""
98-
# size: 8Gi
92+
username: paperless
93+
password: changeme
94+
persistence:
95+
enabled: false
96+
# storageClass: ""
97+
# size: 8Gi
9998

10099
# -- Enable and configure mariadb database subchart under this key.
101100
# If enabled, the app's db envs will be set for you.
102-
# [[ref]](https://github.com/bitnami/charts/tree/main/bitnami/mariadb)
101+
# [[ref]](https://github.com/CloudPirates-io/helm-charts/tree/main/charts/mariadb)
103102
# @default -- See [values.yaml](./values.yaml)
104103
mariadb:
105104
enabled: false
@@ -108,27 +107,22 @@ mariadb:
108107
username: paperless
109108
password: changeme
110109
rootPassword: changeme
111-
primary:
112-
persistence:
113-
enabled: false
114-
# storageClass: ""
115-
# size: 8Gi
110+
persistence:
111+
enabled: false
112+
# storageClass: ""
113+
# size: 8Gi
116114

117115
# -- Enable and configure redis subchart under this key.
118116
# If enabled, the app's Redis env will be set for you.
119-
# [[ref]](https://github.com/bitnami/charts/tree/main/bitnami/redis)
117+
# [[ref]](https://github.com/CloudPirates-io/helm-charts/tree/main/charts/redis)
120118
# @default -- See [values.yaml](./values.yaml)
121119
redis:
122120
enabled: true
123121
auth:
124122
enabled: true
125-
username: ""
126123
# Use an existing secret for redis auth. Do this if you're using Argo to manage your instance or otherwise using helm template under the hood
127124
# The secret name can vary, but the password key must be redis-password.
128125
# existingSecret: paperless-redis
129126
# existingSecretPasswordKey: redis-password
130-
master:
131-
persistence:
132-
enabled: false
133-
replica:
134-
replicaCount: 0
127+
persistence:
128+
enabled: false

0 commit comments

Comments
 (0)