Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
b9313056ee
commit
22aa0c8683
|
@ -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))
|
|
||||||
|
|
||||||
|
|
|
@ -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
|
|
|
@ -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)
|
## [qbitrr-0.0.3](https://github.com/truecharts/charts/compare/qbitrr-0.0.2...qbitrr-0.0.3) (2023-09-10)
|
||||||
|
|
||||||
### Chore
|
### Chore
|
|
@ -22,7 +22,7 @@ sources:
|
||||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/qbitrr
|
- https://github.com/truecharts/charts/tree/master/charts/incubator/qbitrr
|
||||||
- https://github.com/Feramance/Qbitrr
|
- https://github.com/Feramance/Qbitrr
|
||||||
type: application
|
type: application
|
||||||
version: 0.0.3
|
version: 0.0.4
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/SCALE-support: "true"
|
truecharts.org/SCALE-support: "true"
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
|
@ -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))
|
||||||
|
|
||||||
|
|
|
@ -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
|
|
@ -789,13 +789,13 @@ questions:
|
||||||
description: "The UserID of the user running the application"
|
description: "The UserID of the user running the application"
|
||||||
schema:
|
schema:
|
||||||
type: int
|
type: int
|
||||||
default: 568
|
default: 0
|
||||||
- variable: runAsGroup
|
- variable: runAsGroup
|
||||||
label: "runAsGroup"
|
label: "runAsGroup"
|
||||||
description: "The groupID this App of the user running the application"
|
description: "The groupID this App of the user running the application"
|
||||||
schema:
|
schema:
|
||||||
type: int
|
type: int
|
||||||
default: 568
|
default: 0
|
||||||
# Settings from questions.yaml get appended here on a per-app basis
|
# Settings from questions.yaml get appended here on a per-app basis
|
||||||
- variable: PUID
|
- variable: PUID
|
||||||
label: Process User ID - PUID
|
label: Process User ID - PUID
|
Loading…
Reference in New Issue