Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-09-16 19:27:18 +00:00
parent b9313056ee
commit 22aa0c8683
13 changed files with 85 additions and 51 deletions

View File

@ -1,9 +0,0 @@
## [qbitrr-0.0.3](https://github.com/truecharts/charts/compare/qbitrr-0.0.2...qbitrr-0.0.3) (2023-09-10)
### Chore
- bump version ([#12403](https://github.com/truecharts/charts/issues/12403))

View File

@ -1,39 +0,0 @@
image:
repository: tccr.io/truecharts/qbitrr
pullPolicy: IfNotPresent
tag: v3.7.4@sha256:46ce7db5c51415f0848963c8fa4b6afacf7ac9690ecb986449948bb455d10ecf
securityContext:
container:
readOnlyRootFilesystem: false
service:
main:
enabled: false
ports:
main:
enabled: false
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
enabled: false
readiness:
enabled: false
startup:
enabled: false
persistence:
config:
enabled: true
mountPath: /config
downloads:
enabled: true
mountPath: /completed_downloads
portal:
open:
enabled: false

View File

@ -4,6 +4,15 @@
## [qbitrr-0.0.4](https://github.com/truecharts/charts/compare/qbitrr-0.0.3...qbitrr-0.0.4) (2023-09-16)
### Feat
- generate config file ([#12666](https://github.com/truecharts/charts/issues/12666))
## [qbitrr-0.0.3](https://github.com/truecharts/charts/compare/qbitrr-0.0.2...qbitrr-0.0.3) (2023-09-10)
### Chore

View File

@ -22,7 +22,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/qbitrr
- https://github.com/Feramance/Qbitrr
type: application
version: 0.0.3
version: 0.0.4
annotations:
truecharts.org/SCALE-support: "true"
truecharts.org/catagories: |

View File

@ -0,0 +1,9 @@
## [qbitrr-0.0.4](https://github.com/truecharts/charts/compare/qbitrr-0.0.3...qbitrr-0.0.4) (2023-09-16)
### Feat
- generate config file ([#12666](https://github.com/truecharts/charts/issues/12666))

View File

@ -0,0 +1,64 @@
image:
repository: tccr.io/truecharts/qbitrr
pullPolicy: IfNotPresent
tag: v3.7.4@sha256:46ce7db5c51415f0848963c8fa4b6afacf7ac9690ecb986449948bb455d10ecf
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
persistence:
config:
enabled: true
mountPath: /config
targetSelector:
main:
main: {}
1-create-config-file: {}
downloads:
enabled: true
mountPath: /completed_downloads
portal:
open:
enabled: false

View File

@ -789,13 +789,13 @@ questions:
description: "The UserID of the user running the application"
schema:
type: int
default: 568
default: 0
- variable: runAsGroup
label: "runAsGroup"
description: "The groupID this App of the user running the application"
schema:
type: int
default: 568
default: 0
# Settings from questions.yaml get appended here on a per-app basis
- variable: PUID
label: Process User ID - PUID