d0eca4f7dc
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [kanboard/kanboard](https://kanboard.org) ([source](https://redirect.github.com/kanboard/kanboard)) | patch | `v1.2.39` -> `v1.2.40` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>kanboard/kanboard (kanboard/kanboard)</summary> ### [`v1.2.40`](https://redirect.github.com/kanboard/kanboard/releases/tag/v1.2.40): Kanboard 1.2.40 [Compare Source](https://redirect.github.com/kanboard/kanboard/compare/v1.2.39...v1.2.40) - build(deps): bump symfony/finder from 5.4.42 to 5.4.43 - chore: add php83-xmlwriter package to the Docker image - ci: update GitHub pull-request template - fix: avoid PHP error if no subtask in progress is found - fix: avoid potential XSS and HTML injection in comment replies - fix: prevent duplicated columns when enabling per-swimlane column task limits - fix(api): check comment visibility in API procedures - fix(api): verify comment ownership in API procedures - fix(mssql): escape identifiers in timesheet queries - fix(mssql): use ANSI OFFSET/FETCH syntax for pagination queries - fix(test): use explicit ORDER BY for queries returning multiple rows - test: add unit tests for Subtask Time Tracking query methods - test: ensure pagination produces correct chunks </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:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ni4wIiwidXBkYXRlZEluVmVyIjoiMzguOTYuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJ1cGRhdGUvZG9ja2VyL2dlbmVyYWwvbm9uLW1ham9yIl19-->
52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
image:
|
|
repository: kanboard/kanboard
|
|
tag: v1.2.40@sha256:b64239d46ef72650438b8895960bcbd751fe1cf9a702134ca96a19829cb82cdf
|
|
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
|
|
portal:
|
|
open:
|
|
enabled: true
|
|
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
|