Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-11-21 21:45:15 +00:00
parent ae89f02fb6
commit fe5094b6f8
12 changed files with 2452 additions and 0 deletions

View File

View File

@ -0,0 +1,27 @@
apiVersion: v2
appVersion: "2.0.46"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.3.5
deprecated: false
description: This is a web interface to manage your torrents on Real-Debrid, AllDebrid or Premiumize.
home: https://truecharts.org/charts/incubator/rdtclient
icon: https://truecharts.org/img/hotlink-ok/chart-icons/rdtclient.png
keywords:
- rdtclient
- torrent
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: rdtclient
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/rdtclient
- https://github.com/rogerfar/rdt-client
type: application
version: 1.0.0
annotations:
truecharts.org/category: media
truecharts.org/SCALE-support: "true"

View File

@ -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/incubator/)
**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*

View File

View File

@ -0,0 +1,8 @@
This is a web interface to manage your torrents on Real-Debrid, AllDebrid or Premiumize.
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/rdtclient](https://truecharts.org/charts/stable/rdtclient)
---
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!

Binary file not shown.

View File

@ -0,0 +1,118 @@
image:
repository: ghcr.io/rogerfar/rdtclient
pullPolicy: IfNotPresent
tag: 2.0.46@sha256:4d501c324825b34b820b65c4f0056892f52a62127b563ec4a86fea49b0c24b1d
aria2Image:
repository: p3terx/aria2-pro
pullPolicy: IfNotPresent
tag: latest@sha256:086d1a37c586edb07ec0fb956bf9edd89d1d38d138ad5309ff96d510c8c9a011
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
protocol: http
targetPort: 6500
port: 6500
aria2:
enabled: true
type: ClusterIP
targetSelector: aria2
ports:
rpc:
enabled: true
port: 6800
targetSelector: aria2
torrent:
enabled: true
type: ClusterIP
targetSelector: aria2
ports:
torrent:
enabled: true
port: 6888
targetSelector: aria2
torrent-udp:
enabled: true
port: 6888
protocol: udp
targetSelector: aria2
aria2:
enabled: true
rpc_secret: MY_SECRET
disk_cache: 64M
update_trackers: true
custom_trackers_url: "https://trackerslist.com/all_aria2.txt"
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
path: "/"
readiness:
path: "/"
startup:
path: "/"
aria2:
enabled: true
type: Deployment
strategy: RollingUpdate
replicas: 1
podSpec:
containers:
aria2:
primary: true
enabled: true
imageSelector: aria2Image
securityContext:
runAsUser: 0
runAsGroup: 0
readOnlyRootFilesystem: false
runAsNonRoot: false
probes:
liveness:
enabled: true
type: tcp
port: "{{ .Values.service.aria2.ports.rpc.port }}"
readiness:
enabled: true
type: tcp
port: "{{ .Values.service.aria2.ports.rpc.port }}"
startup:
enabled: true
type: tcp
port: "{{ .Values.service.aria2.ports.rpc.port }}"
env:
RPC_PORT: "{{ .Values.service.aria2.ports.rpc.port }}"
LISTEN_PORT: "{{ .Values.service.torrent.ports.torrent.port }}"
RPC_SECRET: "{{ .Values.aria2.rpc_secret }}"
DISK_CACHE: "{{ .Values.aria2.disk_cache }}"
IPV6_MODE: false
UPDATE_TRACKERS: "{{ .Values.aria2.update_trackers }}"
CUSTOM_TRACKER_URL: "{{ .Values.aria2.custom_trackers_url }}"
persistence:
db:
enabled: true
mountPath: "/data/db"
config:
enabled: true
targetSelector:
aria2:
aria2:
mountPath: /config
portal:
open:
enabled: true

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
{{- include "tc.v1.common.lib.chart.notes" $ -}}

View File

@ -0,0 +1,12 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.v1.common.loader.init" . -}}
{{/* Disable [aria2] if requested */}}
{{- if not .Values.aria2.enabled -}}
{{- $_ := set .Values.workload.aria2 "enabled" false -}}
{{- $_ := set .Values.service.aria2 "enabled" false -}}
{{- $_ := set .Values.service.torrent "enabled" false -}}
{{- end -}}
{{/* Render the templates */}}
{{- include "tc.v1.common.loader.apply" . -}}

View File

View File

@ -0,0 +1,4 @@
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/rdtclient.png
categories:
- media
screenshots: []