Files
truecharts/charts/stable/kanboard/values.yaml
T
TrueCharts BotandGitHub a577809408 chore(helm): update image quay.io/kanboard/kanboard v1.2.45 → v1.2.46 (#36557)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [quay.io/kanboard/kanboard](https://kanboard.org)
([source](https://redirect.github.com/kanboard/kanboard)) | patch |
`6711163` -> `dbdd4a8` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>kanboard/kanboard (quay.io/kanboard/kanboard)</summary>

###
[`v1.2.46`](https://redirect.github.com/kanboard/kanboard/releases/tag/v1.2.46):
Kanboard 1.2.46

[Compare
Source](https://redirect.github.com/kanboard/kanboard/compare/v1.2.45...v1.2.46)

-   refactor: update return type in filter apply methods
- fix(security): prevent potential `Host` header injection via
`SERVER_NAME`
- You must specify the Kanboard application URL explicitly to generate
correct URLs from email notifications. The default is
`http://localhost/`.
-   fix: make various PHP 8.x compatibility changes
- fix: avoid `Implicitly nullable parameter declarations` errors in PHP
8.4
-   feat: validate plugin archive URL before downloading
-   feat: use PHP 8.4 in the official Docker image
-   feat: show CAPTCHA on login form regardless of user existence
- feat: add new option to enable notifications by default for new users
- feat: add healthcheck endpoint `healthcheck.php`, and new Docker
Compose files for MariaDB, Postgres, and SQLite
-   feat: add `TRUSTED_PROXY_HEADERS` config option
- If you use a reverse proxy, you can now specify which headers to trust
for the client IP address. Nothing is trusted by default.
-   docs: add `CONTRIBUTING.md` file
-   ci(docker): avoid using `set-output` deprecated command
-   chore!: PHP 8.1 is now the minimum version supported
    -   **!! PHP 7.4 is no longer supported !!**
-   chore: update `docker-compose.yml` sample file to the latest specs
-   chore: remove obsolete `Vagrantfile`
-   build(deps): bump Alpine Docker image from 3.21 to 3.22

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-23 02:08:23 +02:00

50 lines
1.1 KiB
YAML

image:
repository: quay.io/kanboard/kanboard
tag: v1.2.46@sha256:dbdd4a857ec7f1d26c78348765d5fa8f5b62908aa6a92cb03ad1d9c9cde11e50
pullPolicy: IfNotPresent
service:
main:
ports:
main:
port: 10015
targetPort: 80
persistence:
data:
enabled: true
mountPath: "/var/www/app/data"
ssl:
enabled: true
mountPath: "/etc/nginx/ssl"
cnpg:
main:
enabled: true
user: kanboard
database: kanboard
securityContext:
container:
readOnlyRootFilesystem: false
runAsNonRoot: false
runAsUser: 0
runAsGroup: 0
workload:
main:
podSpec:
containers:
main:
env:
MAIL_CONFIGURATION: false
LOG_DRIVER: stdout
DB_DRIVER: "postgres"
DB_NAME: "{{ .Values.cnpg.main.database }}"
DB_USERNAME: "{{ .Values.cnpg.main.user }}"
DB_PORT: "5432"
DB_PASSWORD:
secretKeyRef:
name: cnpg-main-user
key: password
DB_HOSTNAME:
secretKeyRef:
name: cnpg-main-urls
key: host