0956a19b3b
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/feramance/qbitrr](https://redirect.github.com/Feramance/qBitrr) | minor | `9f0da20` → `5b2ac5c` | --- > [!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>Feramance/qBitrr (docker.io/feramance/qbitrr)</summary> ### [`v5.11.1`](https://redirect.github.com/Feramance/qBitrr/blob/HEAD/CHANGELOG.md#v5111-21042026) [Compare Source](https://redirect.github.com/Feramance/qBitrr/compare/v5.10.1...v5.11.1) ##### 🐛 Bug Fixes - [\[patch\] Workflows fixes](https://redirect.github.com/Feramance/qBitrr/commit/e0dedcd63cd2f31992dcc4375d44a258f42b7eec) - [@​Feramance](https://redirect.github.com/Feramance) - [\[patch\] Fixes to Bumpversion config and config generation](https://redirect.github.com/Feramance/qBitrr/commit/cd3dbef88529f27c96e6aab2e33157ab9d8c3522) - [@​Feramance](https://redirect.github.com/Feramance) ##### 🔧 Maintenance - [Update setup.cfg](https://redirect.github.com/Feramance/qBitrr/commit/291749633d19aa3f0e25e7d97a41667670f7ebe3) - [@​Feramance](https://redirect.github.com/Feramance) - [Optimize workflow API calls](https://redirect.github.com/Feramance/qBitrr/commit/9f8f77fcbcefde778af7958f3a4e999bc749a177) - [@​Feramance](https://redirect.github.com/Feramance) - [\[path\] Workflow fixes](https://redirect.github.com/Feramance/qBitrr/commit/999eb8c8e4825a012b79802f199234eafb7136e4) - [@​Feramance](https://redirect.github.com/Feramance) - [Revert "Updated workflows to use self-hosted runner"](https://redirect.github.com/Feramance/qBitrr/commit/eb7a68bb4e4881dea517422348e00c6c159d2158) - [@​Feramance](https://redirect.github.com/Feramance) - [Revert "Added containers to workflows"](https://redirect.github.com/Feramance/qBitrr/commit/48f5c74cbb55f8c1b2d4ff4c5dff0d79f408a95d) - [@​Feramance](https://redirect.github.com/Feramance) - [Added containers to workflows](https://redirect.github.com/Feramance/qBitrr/commit/0895fed9bd27377d602b89f4694e31d10e8c76e2) - [@​Feramance](https://redirect.github.com/Feramance) - [Corrected instance naming and adjusted Import mode docs](https://redirect.github.com/Feramance/qBitrr/commit/b828788fd333b5a15c48007ecb6a6240d3cbcaa7) - [@​Feramance](https://redirect.github.com/Feramance) - [Updated workflows to use self-hosted runner](https://redirect.github.com/Feramance/qBitrr/commit/f00cd1250228173017f1352f004d399ed5cbaad8) - [@​Feramance](https://redirect.github.com/Feramance) - [Updated instance naming](https://redirect.github.com/Feramance/qBitrr/commit/331f8fe65348fc3a48d278f8fb6584fa62ef6eab) - [@​Feramance](https://redirect.github.com/Feramance) - [Updated instance naming docs](https://redirect.github.com/Feramance/qBitrr/commit/cad53559554b6ccec4b99d16fda4bebb3ee38ad7) - [@​Feramance](https://redirect.github.com/Feramance) *** </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:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImFwcC9xYml0cnIiLCJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
61 lines
1.5 KiB
YAML
61 lines
1.5 KiB
YAML
# yaml-language-server: $schema=./values.schema.json
|
|
image:
|
|
repository: docker.io/feramance/qbitrr
|
|
pullPolicy: IfNotPresent
|
|
tag: v5.11.1@sha256:5b2ac5cb8e12c1f52b0edaa1dc4c92b8c6a69b251301d18a059ac3926b1837e5
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
service:
|
|
main:
|
|
enabled: false
|
|
ports:
|
|
main:
|
|
enabled: false
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
initContainers:
|
|
1-create-config-file:
|
|
type: install
|
|
enabled: true
|
|
imageSelector: "image"
|
|
command:
|
|
- /bin/sh
|
|
- -c
|
|
args:
|
|
- |
|
|
conf="/config/config.toml"
|
|
example="https://raw.githubusercontent.com/Feramance/qBitrr/master/config.example.toml"
|
|
if [ -f "$conf" ]; then
|
|
echo "$conf exists. Skipping..."
|
|
else
|
|
echo "$conf does not exist... Downloading the example from upstream..."
|
|
wget "$example" -O $conf || echo "Failed to download"
|
|
fi
|
|
containers:
|
|
main:
|
|
probes:
|
|
liveness:
|
|
enabled: false
|
|
readiness:
|
|
enabled: false
|
|
startup:
|
|
enabled: false
|
|
env:
|
|
QBITRR_OVERRIDES_DATA_PATH: /config
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: /config
|
|
targetSelector:
|
|
main:
|
|
main: {}
|
|
1-create-config-file: {}
|
|
downloads:
|
|
enabled: true
|
|
mountPath: /completed_downloads
|