Files
truecharts/charts/stable/spoolman/values.yaml
T
TrueCharts Bot f2cde33b48 feat(spoolman): update image ghcr.io/donkie/spoolman 0.23.1 → 0.24.0 (#49992)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/donkie/spoolman](https://redirect.github.com/Donkie/Spoolman)
| minor | `c798bcc` → `4213596` |

---

> [!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>Donkie/Spoolman (ghcr.io/donkie/spoolman)</summary>

###
[`v0.24.0`](https://redirect.github.com/Donkie/Spoolman/releases/tag/v0.24.0)

[Compare
Source](https://redirect.github.com/Donkie/Spoolman/compare/v0.23.1...v0.24.0)

#### What's Changed

- Updated all client and server dependencies.
- Added system dark-mode option.
- Fixed missing requirements.txt, to hopefully make moonraker update
manager work again.
- Added new frontend integration tests using playwright.
- Remove max height from locations page.
- Fix spool price disappearing from the list on live updates.
- Add conditional logic to drop permissions for unprivileged Docker by
[@&#8203;jpiccari](https://redirect.github.com/jpiccari) in
[#&#8203;798](https://redirect.github.com/Donkie/Spoolman/pull/798)
- Allow archived spool export by
[@&#8203;velzi](https://redirect.github.com/velzi) in
[#&#8203;919](https://redirect.github.com/Donkie/Spoolman/pull/919)
- Update sync interval for external database synchronization by
[@&#8203;chruoss](https://redirect.github.com/chruoss) in
[#&#8203;943](https://redirect.github.com/Donkie/Spoolman/pull/943)
- Bump uuid from 13.0.2 to 14.0.0 in /client by
[@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in
[#&#8203;927](https://redirect.github.com/Donkie/Spoolman/pull/927)
- docs: add MCP server to integrations list by
[@&#8203;Disane87](https://redirect.github.com/Disane87) in
[#&#8203;890](https://redirect.github.com/Donkie/Spoolman/pull/890)
- Translations update by
[@&#8203;weblate](https://redirect.github.com/weblate) in
[#&#8203;825](https://redirect.github.com/Donkie/Spoolman/pull/825)

#### New Contributors

- [@&#8203;jpiccari](https://redirect.github.com/jpiccari) made their
first contribution in
[#&#8203;798](https://redirect.github.com/Donkie/Spoolman/pull/798)
- [@&#8203;velzi](https://redirect.github.com/velzi) made their first
contribution in
[#&#8203;919](https://redirect.github.com/Donkie/Spoolman/pull/919)
- [@&#8203;chruoss](https://redirect.github.com/chruoss) made their
first contribution in
[#&#8203;943](https://redirect.github.com/Donkie/Spoolman/pull/943)

**Full Changelog**:
<https://github.com/Donkie/Spoolman/compare/v0.23.1...v0.24.0>

</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:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImFwcC9zcG9vbG1hbiIsImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2026-07-07 14:28:02 +02:00

91 lines
3.2 KiB
YAML

# yaml-language-server: $schema=./values.schema.json
image:
repository: ghcr.io/donkie/spoolman
pullPolicy: IfNotPresent
tag: 0.24.0@sha256:42135965c42d8d4fdbc1d7ea4aa0d20a521cd1d3a20e099ee9e2ea5289d62c28
securityContext:
container:
readOnlyRootFilesystem: false
runAsGroup: 0
runAsUser: 0
service:
main:
ports:
main:
protocol: http
port: 8000
workload:
main:
podSpec:
containers:
main:
env:
# Host and port to listen on
SPOOLMAN_HOST: 0.0.0.0
SPOOLMAN_PORT: "{{ .Values.service.main.ports.main.port }}"
SPOOLMAN_DIR_DATA: "{{ .Values.persistence.data.mountPath }}"
SPOOLMAN_DIR_LOGS: "{{ .Values.persistence.logs.mountPath }}"
# DB Type: sqlite, mysql, postgres, cockroachdb
SPOOLMAN_DB_TYPE: postgres
SPOOLMAN_DB_HOST:
secretKeyRef:
name: cnpg-main-urls
key: host
SPOOLMAN_DB_PORT: 5432
SPOOLMAN_DB_NAME: "{{ .Values.cnpg.main.database }}"
SPOOLMAN_DB_USERNAME: "{{ .Values.cnpg.main.user }}"
SPOOLMAN_DB_PASSWORD:
secretKeyRef:
name: cnpg-main-user
key: password
# Logging level: DEBUG, INFO, WARNING, ERROR, CRITICAL
# Logs will only be reported if the level is higher than the level set here
# Default if not set: INFO
# SPOOLMAN_LOGGING_LEVEL=INFO
# Change base path
# Set this if you want to host Spoolman at a sub-path
# If you want the root to be e.g. myhost.com/spoolman
# Then set this to /spoolman
# SPOOLMAN_BASE_PATH=
# Enable Collect Prometheus metrics at database
# Default: FALSE
# SPOOLMAN_METRICS_ENABLED=TRUE
# Collect items (filaments, materials, etc.) from an external database
# Set this to a URL of an external database. Set to an empty string to disable
# Default: https://donkie.github.io/SpoolmanDB/
# EXTERNAL_DB_URL=https://myhost.com/spoolmandb/
# Sync interval in seconds, set to 0 to disable automatic sync. It will only sync on start-up then.
# Default: 3600
# EXTERNAL_DB_SYNC_INTERVAL=3600
# Enable debug mode
# If enabled, the client will accept requests from any host
# This can be useful when developing, but is also a security risk
# Default: FALSE
SPOOLMAN_DEBUG_MODE: true
# Allows CORS ORIGIN.
# Use the https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Access-Control-Allow-Origin semantics
# separated by commas
# for example to allow request from source1.domain.com on port p1 and source2.domain.com on port p2
# SPOOLMAN_CORS_ORIGIN=source1.domain.com:p1, source2.domain.com:p2
# to allow from any
# SPOOLMAN_CORS_ORIGIN=*
persistence:
data:
enabled: true
mountPath: "/data"
logs:
enabled: true
mountPath: "/logs"
cnpg:
main:
enabled: true
user: spoolman
database: spoolman