theshire/kubernetes/apps/qbittorrent/cross-seed/app/externalsecret.yaml

57 lines
1.8 KiB
YAML
Raw Normal View History

2024-09-05 03:41:16 -05:00
---
# yaml-language-server: $schema=https://ks.hsn.dev/external-secrets.io/externalsecret_v1beta1.json
apiVersion: external-secrets.io/v1beta1
kind: ExternalSecret
metadata:
name: cross-seed
spec:
refreshInterval: 5m
2024-09-05 03:41:16 -05:00
secretStoreRef:
kind: ClusterSecretStore
name: onepassword-connect
target:
name: cross-seed-secret
template:
engineVersion: v2
data:
config.js: |
module.exports = {
action: "inject",
apiKey: "{{.CROSS_SEED_API_KEY}}",
delay: 30,
duplicateCategories: false,
flatLinking: false,
2024-09-05 03:41:16 -05:00
includeEpisodes: true,
includeNonVideos: true,
includeSingleEpisodes: true,
linkCategory: "cross-seed",
2024-09-05 03:41:16 -05:00
linkDir: "/data/nas-media/qb/downloads/complete/cross-seed",
linkType: "hardlink",
matchMode: "safe",
outputDir: "/config",
port: 80,
qbittorrentUrl: "http://qbittorrent.qbittorrent.svc.cluster.local",
radarr: ["http://radarr.default.svc.cluster.local/?apikey={{ .RADARR_API_KEY }}"],
2024-09-05 03:41:16 -05:00
skipRecheck: true,
sonarr: ["http://sonarr.default.svc.cluster.local/?apikey={{ .SONARR_API_KEY }}"],
2024-09-05 03:41:16 -05:00
torrentDir: "/qbittorrent/qBittorrent/BT_backup",
2024-10-29 23:04:13 -05:00
// torznab: []
torznab: [
2024-10-29 23:15:15 -05:00
6, // ANT
8, // BLU
9, // TL
2024-10-29 23:04:13 -05:00
10, // FL
12, // FNP
2024-10-29 23:15:15 -05:00
14, // TD
2024-10-29 23:04:13 -05:00
].map(i => `http://prowlarr.default.svc.cluster.local/$${i}/api?apikey={{ .PROWLARR_API_KEY }}`),
2024-09-05 03:41:16 -05:00
};
dataFrom:
- extract:
key: cross-seed
- extract:
key: radarr
- extract:
key: sonarr
- extract:
key: prowlarr