b055aa21dd
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/sysadminsmedia/homebox](https://redirect.github.com/sysadminsmedia/homebox) | patch | `17d8245` → `b1ad7e3` | --- > [!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>sysadminsmedia/homebox (ghcr.io/sysadminsmedia/homebox)</summary> ### [`v0.26.2`](https://redirect.github.com/sysadminsmedia/homebox/releases/tag/v0.26.2) [Compare Source](https://redirect.github.com/sysadminsmedia/homebox/compare/v0.26.1...v0.26.2) #### What's Changed - fix: various new bugs by [@​tankerkiller125](https://redirect.github.com/tankerkiller125) in [#​1553](https://redirect.github.com/sysadminsmedia/homebox/pull/1553) **Full Changelog**: <https://github.com/sysadminsmedia/homebox/compare/v0.26.1...v0.26.2> </details> --- ### Configuration 📅 **Schedule**: (UTC) - 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:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImFwcC9ob21lYm94IiwiYXV0b21lcmdlIiwicmVub3ZhdGUvY29udGFpbmVyIiwidHlwZS9wYXRjaCJdfQ==-->
79 lines
2.5 KiB
YAML
79 lines
2.5 KiB
YAML
# yaml-language-server: $schema=./values.schema.json
|
|
image:
|
|
repository: ghcr.io/sysadminsmedia/homebox
|
|
pullPolicy: IfNotPresent
|
|
tag: 0.26.2@sha256:b1ad7e3c63f732a5f6daa466e8116be4f545b3b120383a64dcb62beb00a660cc
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
protocol: http
|
|
port: 10603
|
|
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
probes:
|
|
liveness:
|
|
path: /api/v1/status
|
|
readiness:
|
|
enabled: true
|
|
type: http
|
|
path: /api/v1/status
|
|
startup:
|
|
enabled: true
|
|
type: tcp
|
|
env:
|
|
# development application mode used for runtime behavior can be one of: development, production
|
|
HBOX_MODE: "production"
|
|
HBOX_WEB_PORT: "{{ .Values.service.main.ports.main.port }}"
|
|
# Dont change
|
|
HBOX_WEB_HOST: "0.0.0.0"
|
|
|
|
# Required. Server-side secret HMAC-keyed into stored API key hashes;
|
|
# the binary refuses to start if this is shorter than 32 bytes.
|
|
# Generate with openssl rand -base64 48.
|
|
# Must stay stable across restarts — rotating it invalidates every issued API key.
|
|
HBOX_AUTH_API_KEY_PEPPER: "CHANGE_ME-CHANGE_ME-CHANGE_ME-CHANGE_ME-CHANGE_ME-CHANGE_ME"
|
|
|
|
# log level to use: trace, debug, info, warn, error, fatal, panic
|
|
HBOX_LOG_LEVEL: "info"
|
|
# log format to use: text, json
|
|
HBOX_LOG_FORMAT: "text"
|
|
# required for ingress
|
|
HBOX_OPTIONS_TRUST_PROXY: '{{ ( .Values.ingress.main.enabled | default false ) }}'
|
|
# database type: sqlite3 or postgres
|
|
HBOX_DATABASE_DRIVER: "postgres"
|
|
# postgres hostname
|
|
HBOX_DATABASE_HOST:
|
|
secretKeyRef:
|
|
name: cnpg-main-urls
|
|
key: host
|
|
# postgres port
|
|
HBOX_DATABASE_PORT: "5432"
|
|
# postgres username
|
|
HBOX_DATABASE_USERNAME: "{{ .Values.cnpg.main.user }}"
|
|
# postgres password
|
|
HBOX_DATABASE_PASSWORD:
|
|
secretKeyRef:
|
|
name: cnpg-main-user
|
|
key: password
|
|
# postgres database name
|
|
HBOX_DATABASE_DATABASE: "{{ .Values.cnpg.main.database }}"
|
|
# postgres ssl mode require or disable
|
|
HBOX_DATABASE_SSL_MODE: "disable"
|
|
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: /data
|
|
|
|
cnpg:
|
|
main:
|
|
enabled: true
|
|
user: homebox
|
|
database: homebox
|