diff --git a/charts/incubator/qbitrr/.helmignore b/charts/incubator/qbitrr/.helmignore new file mode 100644 index 00000000000..77ca5567b26 --- /dev/null +++ b/charts/incubator/qbitrr/.helmignore @@ -0,0 +1,30 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ +# OWNERS file for Kubernetes +OWNERS +# helm-docs templates +*.gotmpl +# docs folder +/docs +# icon +icon.png diff --git a/charts/incubator/qbitrr/CHANGELOG.md b/charts/incubator/qbitrr/CHANGELOG.md new file mode 100644 index 00000000000..e69de29bb2d diff --git a/charts/incubator/qbitrr/Chart.yaml b/charts/incubator/qbitrr/Chart.yaml new file mode 100644 index 00000000000..c68adbb14b5 --- /dev/null +++ b/charts/incubator/qbitrr/Chart.yaml @@ -0,0 +1,30 @@ +apiVersion: v2 +appVersion: "3.7.1" +dependencies: + - name: common + repository: https://library-charts.truecharts.org + version: 14.0.1 +deprecated: false +description: A simple script to monitor qBit and communicate with Radarr and Sonarr. +home: https://truecharts.org/charts/incubator/qbitrr +icon: https://truecharts.org/img/hotlink-ok/chart-icons/qbitrr.png +keywords: + - qbitrr + - Downloaders + - MediaApp-Other +kubeVersion: ">=1.16.0-0" +maintainers: + - email: info@truecharts.org + name: TrueCharts + url: https://truecharts.org +name: qbitrr +sources: + - https://github.com/truecharts/charts/tree/master/charts/incubator/qbitrr + - https://github.com/Feramance/Qbitrr +type: application +version: 0.0.1 +annotations: + truecharts.org/SCALE-support: "true" + truecharts.org/catagories: | + - Downloaders + - MediaApp-Other diff --git a/charts/incubator/qbitrr/README.md b/charts/incubator/qbitrr/README.md new file mode 100644 index 00000000000..e0a9b8fa8d7 --- /dev/null +++ b/charts/incubator/qbitrr/README.md @@ -0,0 +1,27 @@ +# README + +## General Info + +TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE. +However only installations using the TrueNAS SCALE Apps system are supported. + +For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/stable/) + +**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)** + + +## Support + +- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE/guides/scale-intro). +- See the [Website](https://truecharts.org) +- Check our [Discord](https://discord.gg/tVsPTHWTtr) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) + +--- + +## Sponsor TrueCharts + +TrueCharts can only exist due to the incredible effort of our staff. +Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can! + +*All Rights Reserved - The TrueCharts Project* diff --git a/charts/incubator/qbitrr/icon.png b/charts/incubator/qbitrr/icon.png new file mode 100644 index 00000000000..03ac7e42d4f Binary files /dev/null and b/charts/incubator/qbitrr/icon.png differ diff --git a/charts/incubator/qbitrr/questions.yaml b/charts/incubator/qbitrr/questions.yaml new file mode 100644 index 00000000000..83e40095181 --- /dev/null +++ b/charts/incubator/qbitrr/questions.yaml @@ -0,0 +1,67 @@ +# Include{groups} +portals: {} +questions: +# Include{global} +# Include{workload} +# Include{workloadDeployment} + +# Include{replicas1} +# Include{podSpec} +# Include{containerMain} +# Include{containerBasic} +# Include{containerAdvanced} + +# Include{containerConfig} +# Include{podOptions} +# Include{serviceExpertRoot} +# Include{serviceExpert} +# Include{serviceList} +# Include{persistenceRoot} + - variable: config + label: App Config Storage + description: Stores the Application Configuration. + schema: + additional_attrs: true + type: dict + attrs: +# Include{persistenceBasic} + - variable: downloads + label: App Completed Downloads Storage + description: Stores the Application Completed Downloads. + schema: + additional_attrs: true + type: dict + attrs: +# Include{persistenceBasic} +# Include{persistenceList} + +# Include{securityContextRoot} + - variable: runAsUser + label: "runAsUser" + description: "The UserID of the user running the application" + schema: + type: int + default: 568 + - variable: runAsGroup + label: "runAsGroup" + description: "The groupID this App of the user running the application" + schema: + type: int + default: 568 +# Include{securityContextContainer} +# Include{securityContextAdvanced} +# Include{securityContextPod} + - variable: fsGroup + label: "fsGroup" + description: "The group that should own ALL storage." + schema: + type: int + default: 568 + +# Include{resources} +# Include{advanced} +# Include{addons} +# Include{codeserver} +# Include{netshoot} +# Include{vpn} +# Include{documentation} diff --git a/charts/incubator/qbitrr/templates/NOTES.txt b/charts/incubator/qbitrr/templates/NOTES.txt new file mode 100644 index 00000000000..efcb74cb772 --- /dev/null +++ b/charts/incubator/qbitrr/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "tc.v1.common.lib.chart.notes" $ -}} diff --git a/charts/incubator/qbitrr/templates/common.yaml b/charts/incubator/qbitrr/templates/common.yaml new file mode 100644 index 00000000000..78d963fb168 --- /dev/null +++ b/charts/incubator/qbitrr/templates/common.yaml @@ -0,0 +1,2 @@ +{{/* Render the templates */}} +{{ include "tc.v1.common.loader.all" . }} diff --git a/charts/incubator/qbitrr/values.yaml b/charts/incubator/qbitrr/values.yaml new file mode 100644 index 00000000000..1022eeaf102 --- /dev/null +++ b/charts/incubator/qbitrr/values.yaml @@ -0,0 +1,58 @@ +image: + repository: tccr.io/truecharts/qbitrr + pullPolicy: IfNotPresent + tag: v3.7.1@sha256:c87ba70062bd1f81b397c64e53c79ed2b3cf4804b9ee5cc2fa855afd47b33ae4 +securityContext: + container: + readOnlyRootFilesystem: false + +service: + main: + enabled: false + ports: + main: + enabled: false + +workload: + main: + podSpec: + containers: + main: + lifecycle: + postStart: + type: exec + command: + - /bin/sh + - -c + - | + echo "Creating config.toml file..." + if [ -f /config/config.toml ]; then + echo "Config file exists! Skipping..." + else + if mv -n /config/.config/config.rename_me.toml /config/config.toml; then + echo "Config file copied successfully!" + else + echo "Copying config file failed." + exit 1 + fi + fi + 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 +