This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/kanboard/kanboard](https://kanboard.org) ([source](https://redirect.github.com/kanboard/kanboard)) | patch | `b64239d` -> `b136fc7` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>kanboard/kanboard (docker.io/kanboard/kanboard)</summary> ### [`v1.2.41`](https://redirect.github.com/kanboard/kanboard/releases/tag/v1.2.41): Kanboard 1.2.41 [Compare Source](https://redirect.github.com/kanboard/kanboard/compare/v1.2.40...v1.2.41) - feat: add new plugin hooks in project forms - feat: add option to add BOM at the beginning of CSV files (required for Microsoft Excel) - feat: validate app config form values - feat: add cancel button on 2FA code validation screen - fix: add CSRF check to the logout endpoint - fix: add HTML escaping when displaying exception message - fix: add URL validation for external task links - fix: correct broken migration logic for Sqlite </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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMzEuMiIsInVwZGF0ZWRJblZlciI6IjM4LjEzMS4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
image:
|
|
repository: docker.io/kanboard/kanboard
|
|
tag: v1.2.41@sha256:b136fc7936a3825124527cc610c55cbde05328bac47a1f06c4854f594090bde5
|
|
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
|