chore(deps): update container image papermerge/papermerge to v3.2.0@11bd6e4 by renovate (#18242)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | papermerge/papermerge | major | `2.1.9` -> `3.2.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xOTAuMCIsInVwZGF0ZWRJblZlciI6IjM4LjIuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9--> --------- Co-authored-by: kqmaverick <kqmaverick@gmail.com>
This commit is contained in:
co-authored by
kqmaverick
parent
3a41936cad
commit
347c93ba12
@@ -6,7 +6,7 @@ annotations:
|
|||||||
truecharts.org/min_helm_version: "3.11"
|
truecharts.org/min_helm_version: "3.11"
|
||||||
truecharts.org/train: stable
|
truecharts.org/train: stable
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: 2.1.9
|
appVersion: 3.2.0
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
version: 24.1.14
|
version: 24.1.14
|
||||||
@@ -39,4 +39,4 @@ sources:
|
|||||||
- https://github.com/truecharts/charts/tree/master/charts/stable/papermerge
|
- https://github.com/truecharts/charts/tree/master/charts/stable/papermerge
|
||||||
- https://hub.docker.com/r/papermerge/papermerge
|
- https://hub.docker.com/r/papermerge/papermerge
|
||||||
type: application
|
type: application
|
||||||
version: 14.3.1
|
version: 15.0.0
|
||||||
|
|||||||
@@ -5,9 +5,9 @@
|
|||||||
|
|
||||||
{{- $pass_key := randAlphaNum 32 -}}
|
{{- $pass_key := randAlphaNum 32 -}}
|
||||||
{{- with (lookup "v1" "Secret" .Release.Namespace $secretName) -}}
|
{{- with (lookup "v1" "Secret" .Release.Namespace $secretName) -}}
|
||||||
{{- $pass_key = index .data "PAPERMERGE__MAIN__SECRET_KEY" | b64dec -}}
|
{{- $pass_key = index .data "PAPERMERGE__SECURITY__SECRET_KEY" | b64dec -}}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
enabled: true
|
enabled: true
|
||||||
data:
|
data:
|
||||||
PAPERMERGE__MAIN__SECRET_KEY: {{ $pass_key }}
|
PAPERMERGE__SECURITY__SECRET_KEY: {{ $pass_key }}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
image:
|
image:
|
||||||
repository: papermerge/papermerge
|
repository: papermerge/papermerge
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: 2.1.9@sha256:6633dded7eec5310047061da0d2ad60e4f4680223f77d13f691dce171dc244bc
|
tag: 3.2.0@sha256:11bd6e47622b295ee40f1e719c63235544121839a30e5083d959208931007b62
|
||||||
securityContext:
|
securityContext:
|
||||||
container:
|
container:
|
||||||
runAsNonRoot: false
|
runAsNonRoot: false
|
||||||
@@ -12,46 +12,33 @@ service:
|
|||||||
main:
|
main:
|
||||||
ports:
|
ports:
|
||||||
main:
|
main:
|
||||||
targetPort: 8000
|
targetPort: 80
|
||||||
port: 10141
|
port: 12000
|
||||||
workload:
|
workload:
|
||||||
main:
|
main:
|
||||||
podSpec:
|
podSpec:
|
||||||
containers:
|
containers:
|
||||||
main:
|
main:
|
||||||
env:
|
env:
|
||||||
PAPERMERGE__MAIN__TIMEZONE: "{{ .Values.TZ }}"
|
PAPERMERGE__SECURITY__SECRET_KEY:
|
||||||
DJANGO_SUPERUSER_EMAIL: admin@example.com
|
|
||||||
DJANGO_SUPERUSER_USENAME: admin
|
|
||||||
DJANGO_SUPERUSER_PASSWORD: my_admin_password123
|
|
||||||
PAPERMERGE__MAIN__SECRET_KEY:
|
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: papermerge-secrets
|
name: papermerge-secrets
|
||||||
key: PAPERMERGE__MAIN__SECRET_KEY
|
key: PAPERMERGE__SECURITY__SECRET_KEY
|
||||||
PAPERMERGE__DATABASE__TYPE: postgres
|
PAPERMERGE__AUTH__USERNAME: admin
|
||||||
PAPERMERGE__DATABASE__NAME: "{{ .Values.cnpg.main.database }}"
|
PAPERMERGE__AUTH__PASSWORD: admin
|
||||||
PAPERMERGE__DATABASE__USER: "{{ .Values.cnpg.main.user }}"
|
PAPERMERGE__DATABASE__URL: '{{ printf "postgresql://%s:%s@%s:5432/%s" .Values.cnpg.main.user .Values.cnpg.main.creds.password .Values.cnpg.main.creds.host .Values.cnpg.main.database }}'
|
||||||
PAPERMERGE__DATABASE__PORT: 5432
|
PAPERMERGE__REDIS__URL:
|
||||||
PAPERMERGE__DATABASE__HOST:
|
|
||||||
secretKeyRef:
|
|
||||||
name: cnpg-main-urls
|
|
||||||
key: host
|
|
||||||
PAPERMERGE__DATABASE__PASSWORD:
|
|
||||||
secretKeyRef:
|
|
||||||
name: cnpg-main-user
|
|
||||||
key: password
|
|
||||||
PAPERMERGE__REDIS__PORT: 6379
|
|
||||||
PAPERMERGE__REDIS__HOST:
|
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
expandObjectName: false
|
expandObjectName: false
|
||||||
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
|
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
|
||||||
key: plainhost
|
key: url
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/config"
|
mountPath: "/core_app/index_db"
|
||||||
varrun:
|
media:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
mountPath: "/core_app/media"
|
||||||
redis:
|
redis:
|
||||||
enabled: true
|
enabled: true
|
||||||
redisUsername: papermerge
|
redisUsername: papermerge
|
||||||
|
|||||||
Reference in New Issue
Block a user