32f09aec98
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/ghostfolio/ghostfolio](https://redirect.github.com/ghostfolio/ghostfolio) | major | `d3ed46a` → `9c7c447` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/18710) for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>ghostfolio/ghostfolio (docker.io/ghostfolio/ghostfolio)</summary> ### [`v3.0.0`](https://redirect.github.com/ghostfolio/ghostfolio/blob/HEAD/CHANGELOG.md#300---2026-04-23) [Compare Source](https://redirect.github.com/ghostfolio/ghostfolio/compare/2.255.0...3.0.0) ##### Added - Added a blog post: *Announcing Ghostfolio 3.0* ##### Changed - Migrated from *Material Design* 2 to *Material Design* 3 - Moved the total amount, change and performance with currency effects on the analysis page from experimental to general availability - Refreshed the cryptocurrencies list - Upgraded `countup.js` from version `2.9.0` to `2.10.0` - Upgraded `jsonpath` from version `1.2.1` to `1.3.0` - Upgraded `nestjs` from version `11.1.14` to `11.1.19` - Upgraded `ngx-markdown` from version `21.1.0` to `21.2.0` - Upgraded `Nx` from version `22.6.4` to `22.6.5` - Upgraded `prisma` from version `6.19.0` to `7.7.0` ##### Todo - **Breaking Change**: The `sslmode=prefer` parameter in `DATABASE_URL` is no longer supported. Please update your environment variables (see `.env`) to use `sslmode=require` if *SSL* is enabled or remove the `sslmode` parameter entirely if *SSL* is not used. </details> --- ### Configuration 📅 **Schedule**: (UTC) - 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:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImFwcC9naG9zdGZvbGlvIiwicmVub3ZhdGUvY29udGFpbmVyIiwidHlwZS9tYWpvciJdfQ==-->
60 lines
1.5 KiB
YAML
60 lines
1.5 KiB
YAML
# yaml-language-server: $schema=./values.schema.json
|
|
image:
|
|
repository: docker.io/ghostfolio/ghostfolio
|
|
pullPolicy: IfNotPresent
|
|
tag: 3.0.0@sha256:9c7c4475ad572d8c2a1e7085e4216edc4895b2c435b9d48a711e09e0d96e1723
|
|
securityContext:
|
|
container:
|
|
runAsNonRoot: false
|
|
readOnlyRootFilesystem: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 3333
|
|
targetPort: 3333
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
probes:
|
|
liveness:
|
|
path: "/"
|
|
type: http
|
|
readiness:
|
|
path: "/"
|
|
type: http
|
|
startup:
|
|
type: tcp
|
|
env:
|
|
ALPHA_VANTAGE_API_KEY: ""
|
|
ACCESS_TOKEN_SALT:
|
|
secretKeyRef:
|
|
name: ghostfolio-secrets
|
|
key: ACCESS_TOKEN_SALT
|
|
JWT_SECRET_KEY:
|
|
secretKeyRef:
|
|
name: ghostfolio-secrets
|
|
key: JWT_SECRET_KEY
|
|
DATABASE_URL:
|
|
secretKeyRef:
|
|
name: ghostfolio-secrets
|
|
key: DATABASE_URL
|
|
REDIS_HOST:
|
|
secretKeyRef:
|
|
expandObjectName: false
|
|
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
|
|
key: plainhost
|
|
REDIS_PASSWORD: "{{ .Values.redis.password }}"
|
|
REDIS_PORT: "6379"
|
|
cnpg:
|
|
main:
|
|
enabled: true
|
|
user: ghostfolio
|
|
database: ghostfolio
|
|
redis:
|
|
enabled: true
|