├── .github ├── FUNDING.yml └── stale.yml ├── .gitignore ├── CNAME ├── LICENSE ├── README.md ├── Vagrantfile ├── charts ├── abuse-fetcher │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cron.yaml │ │ └── rbac.yaml │ └── values.yaml ├── abuse-store │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── db.yaml │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── balancer-excluder │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cron.yaml │ │ └── rbac.yaml │ └── values.yaml ├── content-enhancer │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ └── cron.yaml │ └── values.yaml ├── content-prober │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── dnslb │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── rbac.yaml │ └── values.yaml ├── download-progress │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── daemonset.yaml │ │ └── service.yaml │ └── values.yaml ├── external-proxy │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── image-transformer │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── jackett │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── pvc.yaml │ │ └── service.yaml │ └── values.yaml ├── job-cleaner │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cron.yaml │ │ └── rbac.yaml │ └── values.yaml ├── job-pooler │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── magnet2torrent │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── minio-s3-gateway │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── daemonset.yaml │ │ └── service.yaml │ └── values.yaml ├── minio │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── pvc.yaml │ │ └── service.yaml │ └── values.yaml ├── nginx-vod │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── daemonset.yaml │ │ └── service.yaml │ └── values.yaml ├── node-dns-syncer │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cron.yaml │ │ └── rbac.yaml │ └── values.yaml ├── node-manager │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cron.yaml │ │ └── rbac.yaml │ └── values.yaml ├── rapidapi-gateway │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ └── service.yaml │ └── values.yaml ├── rest-api │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── rbac.yaml │ │ └── service.yaml │ └── values.yaml ├── retry-proxy │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── daemonset.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ └── values.yaml ├── srt2vtt │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ └── service.yaml │ └── values.yaml ├── torrent-archiver │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── daemonset.yaml │ │ └── service.yaml │ └── values.yaml ├── torrent-cache-cleaner │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ └── cron.yaml │ └── values.yaml ├── torrent-http-proxy │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── daemonset.yaml │ │ ├── ingress.yaml │ │ ├── ingress_grpc.yaml │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ └── servicemonitor.yaml │ └── values.yaml ├── torrent-store │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── torrent-web-cache │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── daemonset.yaml │ │ └── service.yaml │ └── values.yaml ├── transcode-web-cache │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── daemonset.yaml │ │ └── service.yaml │ └── values.yaml ├── url-store │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── db.yaml │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── video-info │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── video-thumbnails-generator │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── webhook │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── db.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ └── values.yaml ├── webtor-web-blog │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ └── values.yaml ├── webtor-web-ui │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ └── values.yaml └── webtorrent-tracker │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── ingress.yaml │ └── service.yaml │ └── values.yaml ├── helmfile.yaml ├── index.html ├── index.yaml └── scripts ├── get-webtor.sh └── update-webtor.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .deploy 2 | .DS_Store 3 | .vagrant 4 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | charts.webtor.io -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/Vagrantfile -------------------------------------------------------------------------------- /charts/abuse-fetcher/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/abuse-fetcher/.helmignore -------------------------------------------------------------------------------- /charts/abuse-fetcher/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/abuse-fetcher/Chart.yaml -------------------------------------------------------------------------------- /charts/abuse-fetcher/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/abuse-fetcher/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/abuse-fetcher/templates/cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/abuse-fetcher/templates/cron.yaml -------------------------------------------------------------------------------- /charts/abuse-fetcher/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/abuse-fetcher/templates/rbac.yaml -------------------------------------------------------------------------------- /charts/abuse-fetcher/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/abuse-fetcher/values.yaml -------------------------------------------------------------------------------- /charts/abuse-store/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/abuse-store/.helmignore -------------------------------------------------------------------------------- /charts/abuse-store/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/abuse-store/Chart.yaml -------------------------------------------------------------------------------- /charts/abuse-store/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/abuse-store/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/abuse-store/templates/db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/abuse-store/templates/db.yaml -------------------------------------------------------------------------------- /charts/abuse-store/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/abuse-store/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/abuse-store/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/abuse-store/templates/service.yaml -------------------------------------------------------------------------------- /charts/abuse-store/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/abuse-store/values.yaml -------------------------------------------------------------------------------- /charts/balancer-excluder/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/balancer-excluder/.helmignore -------------------------------------------------------------------------------- /charts/balancer-excluder/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/balancer-excluder/Chart.yaml -------------------------------------------------------------------------------- /charts/balancer-excluder/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/balancer-excluder/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/balancer-excluder/templates/cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/balancer-excluder/templates/cron.yaml -------------------------------------------------------------------------------- /charts/balancer-excluder/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/balancer-excluder/templates/rbac.yaml -------------------------------------------------------------------------------- /charts/balancer-excluder/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/balancer-excluder/values.yaml -------------------------------------------------------------------------------- /charts/content-enhancer/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/content-enhancer/.helmignore -------------------------------------------------------------------------------- /charts/content-enhancer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/content-enhancer/Chart.yaml -------------------------------------------------------------------------------- /charts/content-enhancer/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/content-enhancer/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/content-enhancer/templates/cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/content-enhancer/templates/cron.yaml -------------------------------------------------------------------------------- /charts/content-enhancer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/content-enhancer/values.yaml -------------------------------------------------------------------------------- /charts/content-prober/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/content-prober/.helmignore -------------------------------------------------------------------------------- /charts/content-prober/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/content-prober/Chart.yaml -------------------------------------------------------------------------------- /charts/content-prober/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/content-prober/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/content-prober/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/content-prober/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/content-prober/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/content-prober/templates/service.yaml -------------------------------------------------------------------------------- /charts/content-prober/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/content-prober/values.yaml -------------------------------------------------------------------------------- /charts/dnslb/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/dnslb/.helmignore -------------------------------------------------------------------------------- /charts/dnslb/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/dnslb/Chart.yaml -------------------------------------------------------------------------------- /charts/dnslb/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/dnslb/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/dnslb/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/dnslb/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/dnslb/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/dnslb/templates/rbac.yaml -------------------------------------------------------------------------------- /charts/dnslb/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/dnslb/values.yaml -------------------------------------------------------------------------------- /charts/download-progress/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/download-progress/.helmignore -------------------------------------------------------------------------------- /charts/download-progress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/download-progress/Chart.yaml -------------------------------------------------------------------------------- /charts/download-progress/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/download-progress/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/download-progress/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/download-progress/templates/daemonset.yaml -------------------------------------------------------------------------------- /charts/download-progress/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/download-progress/templates/service.yaml -------------------------------------------------------------------------------- /charts/download-progress/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/download-progress/values.yaml -------------------------------------------------------------------------------- /charts/external-proxy/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/external-proxy/.helmignore -------------------------------------------------------------------------------- /charts/external-proxy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/external-proxy/Chart.yaml -------------------------------------------------------------------------------- /charts/external-proxy/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/external-proxy/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/external-proxy/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/external-proxy/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/external-proxy/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/external-proxy/templates/service.yaml -------------------------------------------------------------------------------- /charts/external-proxy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/external-proxy/values.yaml -------------------------------------------------------------------------------- /charts/image-transformer/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/image-transformer/.helmignore -------------------------------------------------------------------------------- /charts/image-transformer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/image-transformer/Chart.yaml -------------------------------------------------------------------------------- /charts/image-transformer/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/image-transformer/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/image-transformer/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/image-transformer/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/image-transformer/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/image-transformer/templates/service.yaml -------------------------------------------------------------------------------- /charts/image-transformer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/image-transformer/values.yaml -------------------------------------------------------------------------------- /charts/jackett/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/jackett/.helmignore -------------------------------------------------------------------------------- /charts/jackett/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/jackett/Chart.yaml -------------------------------------------------------------------------------- /charts/jackett/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/jackett/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/jackett/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/jackett/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/jackett/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/jackett/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/jackett/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/jackett/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/jackett/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/jackett/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/jackett/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/jackett/templates/service.yaml -------------------------------------------------------------------------------- /charts/jackett/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/jackett/values.yaml -------------------------------------------------------------------------------- /charts/job-cleaner/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/job-cleaner/.helmignore -------------------------------------------------------------------------------- /charts/job-cleaner/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/job-cleaner/Chart.yaml -------------------------------------------------------------------------------- /charts/job-cleaner/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/job-cleaner/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/job-cleaner/templates/cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/job-cleaner/templates/cron.yaml -------------------------------------------------------------------------------- /charts/job-cleaner/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/job-cleaner/templates/rbac.yaml -------------------------------------------------------------------------------- /charts/job-cleaner/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/job-cleaner/values.yaml -------------------------------------------------------------------------------- /charts/job-pooler/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/job-pooler/.helmignore -------------------------------------------------------------------------------- /charts/job-pooler/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/job-pooler/Chart.yaml -------------------------------------------------------------------------------- /charts/job-pooler/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/job-pooler/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/job-pooler/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/job-pooler/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/job-pooler/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/job-pooler/templates/service.yaml -------------------------------------------------------------------------------- /charts/job-pooler/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/job-pooler/values.yaml -------------------------------------------------------------------------------- /charts/magnet2torrent/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/magnet2torrent/.helmignore -------------------------------------------------------------------------------- /charts/magnet2torrent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/magnet2torrent/Chart.yaml -------------------------------------------------------------------------------- /charts/magnet2torrent/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/magnet2torrent/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/magnet2torrent/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/magnet2torrent/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/magnet2torrent/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/magnet2torrent/templates/service.yaml -------------------------------------------------------------------------------- /charts/magnet2torrent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/magnet2torrent/values.yaml -------------------------------------------------------------------------------- /charts/minio-s3-gateway/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/minio-s3-gateway/.helmignore -------------------------------------------------------------------------------- /charts/minio-s3-gateway/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/minio-s3-gateway/Chart.yaml -------------------------------------------------------------------------------- /charts/minio-s3-gateway/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/minio-s3-gateway/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/minio-s3-gateway/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/minio-s3-gateway/templates/daemonset.yaml -------------------------------------------------------------------------------- /charts/minio-s3-gateway/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/minio-s3-gateway/templates/service.yaml -------------------------------------------------------------------------------- /charts/minio-s3-gateway/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/minio-s3-gateway/values.yaml -------------------------------------------------------------------------------- /charts/minio/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/minio/.helmignore -------------------------------------------------------------------------------- /charts/minio/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/minio/Chart.yaml -------------------------------------------------------------------------------- /charts/minio/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/minio/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/minio/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/minio/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/minio/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/minio/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/minio/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/minio/templates/service.yaml -------------------------------------------------------------------------------- /charts/minio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/minio/values.yaml -------------------------------------------------------------------------------- /charts/nginx-vod/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/nginx-vod/.helmignore -------------------------------------------------------------------------------- /charts/nginx-vod/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/nginx-vod/Chart.yaml -------------------------------------------------------------------------------- /charts/nginx-vod/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/nginx-vod/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/nginx-vod/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/nginx-vod/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/nginx-vod/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/nginx-vod/templates/daemonset.yaml -------------------------------------------------------------------------------- /charts/nginx-vod/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/nginx-vod/templates/service.yaml -------------------------------------------------------------------------------- /charts/nginx-vod/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/nginx-vod/values.yaml -------------------------------------------------------------------------------- /charts/node-dns-syncer/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/node-dns-syncer/.helmignore -------------------------------------------------------------------------------- /charts/node-dns-syncer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/node-dns-syncer/Chart.yaml -------------------------------------------------------------------------------- /charts/node-dns-syncer/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/node-dns-syncer/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/node-dns-syncer/templates/cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/node-dns-syncer/templates/cron.yaml -------------------------------------------------------------------------------- /charts/node-dns-syncer/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/node-dns-syncer/templates/rbac.yaml -------------------------------------------------------------------------------- /charts/node-dns-syncer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/node-dns-syncer/values.yaml -------------------------------------------------------------------------------- /charts/node-manager/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/node-manager/.helmignore -------------------------------------------------------------------------------- /charts/node-manager/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/node-manager/Chart.yaml -------------------------------------------------------------------------------- /charts/node-manager/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/node-manager/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/node-manager/templates/cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/node-manager/templates/cron.yaml -------------------------------------------------------------------------------- /charts/node-manager/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/node-manager/templates/rbac.yaml -------------------------------------------------------------------------------- /charts/node-manager/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/node-manager/values.yaml -------------------------------------------------------------------------------- /charts/rapidapi-gateway/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/rapidapi-gateway/.helmignore -------------------------------------------------------------------------------- /charts/rapidapi-gateway/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/rapidapi-gateway/Chart.yaml -------------------------------------------------------------------------------- /charts/rapidapi-gateway/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/rapidapi-gateway/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/rapidapi-gateway/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/rapidapi-gateway/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/rapidapi-gateway/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/rapidapi-gateway/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/rapidapi-gateway/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/rapidapi-gateway/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/rapidapi-gateway/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/rapidapi-gateway/templates/service.yaml -------------------------------------------------------------------------------- /charts/rapidapi-gateway/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/rapidapi-gateway/values.yaml -------------------------------------------------------------------------------- /charts/rest-api/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/rest-api/.helmignore -------------------------------------------------------------------------------- /charts/rest-api/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/rest-api/Chart.yaml -------------------------------------------------------------------------------- /charts/rest-api/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/rest-api/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/rest-api/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/rest-api/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/rest-api/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/rest-api/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/rest-api/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/rest-api/templates/rbac.yaml -------------------------------------------------------------------------------- /charts/rest-api/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/rest-api/templates/service.yaml -------------------------------------------------------------------------------- /charts/rest-api/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/rest-api/values.yaml -------------------------------------------------------------------------------- /charts/retry-proxy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/retry-proxy/Chart.yaml -------------------------------------------------------------------------------- /charts/retry-proxy/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/retry-proxy/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/retry-proxy/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/retry-proxy/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/retry-proxy/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/retry-proxy/templates/daemonset.yaml -------------------------------------------------------------------------------- /charts/retry-proxy/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/retry-proxy/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/retry-proxy/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/retry-proxy/templates/service.yaml -------------------------------------------------------------------------------- /charts/retry-proxy/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/retry-proxy/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/retry-proxy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/retry-proxy/values.yaml -------------------------------------------------------------------------------- /charts/srt2vtt/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/srt2vtt/.helmignore -------------------------------------------------------------------------------- /charts/srt2vtt/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/srt2vtt/Chart.yaml -------------------------------------------------------------------------------- /charts/srt2vtt/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/srt2vtt/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/srt2vtt/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/srt2vtt/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/srt2vtt/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/srt2vtt/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/srt2vtt/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/srt2vtt/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/srt2vtt/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/srt2vtt/templates/service.yaml -------------------------------------------------------------------------------- /charts/srt2vtt/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/srt2vtt/values.yaml -------------------------------------------------------------------------------- /charts/torrent-archiver/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-archiver/.helmignore -------------------------------------------------------------------------------- /charts/torrent-archiver/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-archiver/Chart.yaml -------------------------------------------------------------------------------- /charts/torrent-archiver/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-archiver/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/torrent-archiver/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-archiver/templates/daemonset.yaml -------------------------------------------------------------------------------- /charts/torrent-archiver/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-archiver/templates/service.yaml -------------------------------------------------------------------------------- /charts/torrent-archiver/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-archiver/values.yaml -------------------------------------------------------------------------------- /charts/torrent-cache-cleaner/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-cache-cleaner/.helmignore -------------------------------------------------------------------------------- /charts/torrent-cache-cleaner/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-cache-cleaner/Chart.yaml -------------------------------------------------------------------------------- /charts/torrent-cache-cleaner/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-cache-cleaner/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/torrent-cache-cleaner/templates/cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-cache-cleaner/templates/cron.yaml -------------------------------------------------------------------------------- /charts/torrent-cache-cleaner/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-cache-cleaner/values.yaml -------------------------------------------------------------------------------- /charts/torrent-http-proxy/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-http-proxy/.helmignore -------------------------------------------------------------------------------- /charts/torrent-http-proxy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-http-proxy/Chart.yaml -------------------------------------------------------------------------------- /charts/torrent-http-proxy/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-http-proxy/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/torrent-http-proxy/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-http-proxy/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/torrent-http-proxy/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-http-proxy/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/torrent-http-proxy/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-http-proxy/templates/daemonset.yaml -------------------------------------------------------------------------------- /charts/torrent-http-proxy/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-http-proxy/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/torrent-http-proxy/templates/ingress_grpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-http-proxy/templates/ingress_grpc.yaml -------------------------------------------------------------------------------- /charts/torrent-http-proxy/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-http-proxy/templates/rbac.yaml -------------------------------------------------------------------------------- /charts/torrent-http-proxy/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-http-proxy/templates/service.yaml -------------------------------------------------------------------------------- /charts/torrent-http-proxy/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-http-proxy/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/torrent-http-proxy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-http-proxy/values.yaml -------------------------------------------------------------------------------- /charts/torrent-store/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-store/.helmignore -------------------------------------------------------------------------------- /charts/torrent-store/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-store/Chart.yaml -------------------------------------------------------------------------------- /charts/torrent-store/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-store/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/torrent-store/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-store/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/torrent-store/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-store/templates/service.yaml -------------------------------------------------------------------------------- /charts/torrent-store/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-store/values.yaml -------------------------------------------------------------------------------- /charts/torrent-web-cache/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-web-cache/.helmignore -------------------------------------------------------------------------------- /charts/torrent-web-cache/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-web-cache/Chart.yaml -------------------------------------------------------------------------------- /charts/torrent-web-cache/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-web-cache/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/torrent-web-cache/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-web-cache/templates/daemonset.yaml -------------------------------------------------------------------------------- /charts/torrent-web-cache/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-web-cache/templates/service.yaml -------------------------------------------------------------------------------- /charts/torrent-web-cache/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/torrent-web-cache/values.yaml -------------------------------------------------------------------------------- /charts/transcode-web-cache/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/transcode-web-cache/.helmignore -------------------------------------------------------------------------------- /charts/transcode-web-cache/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/transcode-web-cache/Chart.yaml -------------------------------------------------------------------------------- /charts/transcode-web-cache/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/transcode-web-cache/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/transcode-web-cache/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/transcode-web-cache/templates/daemonset.yaml -------------------------------------------------------------------------------- /charts/transcode-web-cache/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/transcode-web-cache/templates/service.yaml -------------------------------------------------------------------------------- /charts/transcode-web-cache/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/transcode-web-cache/values.yaml -------------------------------------------------------------------------------- /charts/url-store/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/url-store/.helmignore -------------------------------------------------------------------------------- /charts/url-store/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/url-store/Chart.yaml -------------------------------------------------------------------------------- /charts/url-store/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/url-store/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/url-store/templates/db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/url-store/templates/db.yaml -------------------------------------------------------------------------------- /charts/url-store/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/url-store/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/url-store/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/url-store/templates/service.yaml -------------------------------------------------------------------------------- /charts/url-store/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/url-store/values.yaml -------------------------------------------------------------------------------- /charts/video-info/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/video-info/.helmignore -------------------------------------------------------------------------------- /charts/video-info/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/video-info/Chart.yaml -------------------------------------------------------------------------------- /charts/video-info/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/video-info/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/video-info/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/video-info/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/video-info/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/video-info/templates/service.yaml -------------------------------------------------------------------------------- /charts/video-info/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/video-info/values.yaml -------------------------------------------------------------------------------- /charts/video-thumbnails-generator/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/video-thumbnails-generator/.helmignore -------------------------------------------------------------------------------- /charts/video-thumbnails-generator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/video-thumbnails-generator/Chart.yaml -------------------------------------------------------------------------------- /charts/video-thumbnails-generator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/video-thumbnails-generator/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/video-thumbnails-generator/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/video-thumbnails-generator/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/video-thumbnails-generator/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/video-thumbnails-generator/templates/service.yaml -------------------------------------------------------------------------------- /charts/video-thumbnails-generator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/video-thumbnails-generator/values.yaml -------------------------------------------------------------------------------- /charts/webhook/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webhook/Chart.yaml -------------------------------------------------------------------------------- /charts/webhook/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webhook/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/webhook/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webhook/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/webhook/templates/db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webhook/templates/db.yaml -------------------------------------------------------------------------------- /charts/webhook/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webhook/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/webhook/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webhook/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/webhook/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webhook/templates/service.yaml -------------------------------------------------------------------------------- /charts/webhook/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webhook/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/webhook/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webhook/values.yaml -------------------------------------------------------------------------------- /charts/webtor-web-blog/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtor-web-blog/Chart.yaml -------------------------------------------------------------------------------- /charts/webtor-web-blog/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtor-web-blog/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/webtor-web-blog/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtor-web-blog/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/webtor-web-blog/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtor-web-blog/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/webtor-web-blog/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtor-web-blog/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/webtor-web-blog/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtor-web-blog/templates/service.yaml -------------------------------------------------------------------------------- /charts/webtor-web-blog/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtor-web-blog/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/webtor-web-blog/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtor-web-blog/values.yaml -------------------------------------------------------------------------------- /charts/webtor-web-ui/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtor-web-ui/Chart.yaml -------------------------------------------------------------------------------- /charts/webtor-web-ui/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtor-web-ui/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/webtor-web-ui/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtor-web-ui/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/webtor-web-ui/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtor-web-ui/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/webtor-web-ui/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtor-web-ui/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/webtor-web-ui/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtor-web-ui/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/webtor-web-ui/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtor-web-ui/templates/service.yaml -------------------------------------------------------------------------------- /charts/webtor-web-ui/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtor-web-ui/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/webtor-web-ui/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtor-web-ui/values.yaml -------------------------------------------------------------------------------- /charts/webtorrent-tracker/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtorrent-tracker/.helmignore -------------------------------------------------------------------------------- /charts/webtorrent-tracker/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtorrent-tracker/Chart.yaml -------------------------------------------------------------------------------- /charts/webtorrent-tracker/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtorrent-tracker/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/webtorrent-tracker/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtorrent-tracker/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/webtorrent-tracker/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtorrent-tracker/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/webtorrent-tracker/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtorrent-tracker/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/webtorrent-tracker/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtorrent-tracker/templates/service.yaml -------------------------------------------------------------------------------- /charts/webtorrent-tracker/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/charts/webtorrent-tracker/values.yaml -------------------------------------------------------------------------------- /helmfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/helmfile.yaml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/index.yaml -------------------------------------------------------------------------------- /scripts/get-webtor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/scripts/get-webtor.sh -------------------------------------------------------------------------------- /scripts/update-webtor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtor-io/helm-charts/HEAD/scripts/update-webtor.sh --------------------------------------------------------------------------------