f259090de2
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [common](https://truecharts.org/charts/library/common) ([source](https://ghcr.io/cloudnative-pg/postgis)) | major | `25.4.10` -> `28.12.1` | --- ### 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://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2hlbG0iLCJ0eXBlL21ham9yIl19--> --------- Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> Co-authored-by: alfi0812 <admin@alfi0812.de>
83 lines
2.1 KiB
YAML
83 lines
2.1 KiB
YAML
image:
|
|
repository: docker.io/fireflyiii/core
|
|
pullPolicy: IfNotPresent
|
|
tag: version-6.2.20@sha256:f067064cdf2ef0c196a443ba3921bac4988a180e5ea2c223ee8734ad91085e09
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
runAsUser: 33
|
|
runAsGroup: 33
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
probes:
|
|
liveness:
|
|
path: "/healthcheck"
|
|
readiness:
|
|
path: "/healthcheck"
|
|
startup:
|
|
path: "/healthcheck"
|
|
env:
|
|
DB_USERNAME: "{{ .Values.cnpg.main.user }}"
|
|
DB_DATABASE: "{{ .Values.cnpg.main.database }}"
|
|
DB_CONNECTION: pgsql
|
|
DB_PORT: 5432
|
|
REDIS_DB: "0"
|
|
REDIS_CACHE_DB: "1"
|
|
CACHE_DRIVER: redis
|
|
SESSION_DRIVER: redis
|
|
REDIS_SCHEME: tcp
|
|
REDIS_PORT: 6379
|
|
APP_URL: ""
|
|
TRUSTED_PROXIES: "172.16.0.0/16"
|
|
DB_HOST:
|
|
secretKeyRef:
|
|
name: cnpg-main-urls
|
|
key: host
|
|
DB_PASSWORD:
|
|
secretKeyRef:
|
|
name: cnpg-main-user
|
|
key: password
|
|
REDIS_HOST:
|
|
secretKeyRef:
|
|
expandObjectName: false
|
|
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
|
|
key: plainhost
|
|
REDIS_PASSWORD: "{{ .Values.redis.password }}"
|
|
STATIC_CRON_TOKEN:
|
|
secretKeyRef:
|
|
name: firefly-secrets
|
|
key: STATIC_CRON_TOKEN
|
|
APP_KEY:
|
|
secretKeyRef:
|
|
name: firefly-secrets
|
|
key: APP_KEY
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10082
|
|
targetPort: 8080
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: "/var/www/html/storage/upload"
|
|
varrun:
|
|
enabled: false
|
|
cronjob:
|
|
schedule: "0 3 * * *"
|
|
annotations: {}
|
|
failedJobsHistoryLimit: 5
|
|
successfulJobsHistoryLimit: 2
|
|
# Enabled redis
|
|
redis:
|
|
enabled: true
|
|
# Enabled postgres
|
|
cnpg:
|
|
main:
|
|
enabled: true
|
|
user: firefly
|
|
database: firefly
|