blob: c4d7ca202042c63fde5a53469a1c416177ea4f98 [file] [log] [blame]
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +04001input: {
gio44f621b2024-04-29 09:44:38 +04002 network: #Network @name(Network)
3 subdomain: string @name(Subdomain)
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +04004}
5
6_domain: "\(input.subdomain).\(input.network.domain)"
gio09a3e5b2024-04-26 14:11:06 +04007url: "https://\(_domain)"
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +04008
gio44f621b2024-04-29 09:44:38 +04009name: "qBitorrent"
Giorgi Lekveishvilief21c132024-01-17 18:57:58 +040010namespace: "app-qbittorrent"
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +040011readme: "qbittorrent application will be installed on \(input.network.name) network and be accessible to any user on https://\(_domain)"
Giorgi Lekveishvilief21c132024-01-17 18:57:58 +040012description: "qBittorrent is a cross-platform free and open-source BitTorrent client written in native C++. It relies on Boost, Qt 6 toolkit and the libtorrent-rasterbar library, with an optional search engine written in Python."
13icon: "<svg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 48 48'><circle cx='24' cy='24' r='21.5' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round'/><path fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' d='M26.651 22.364a5.034 5.034 0 0 1 5.035-5.035h0a5.034 5.034 0 0 1 5.034 5.035v3.272a5.034 5.034 0 0 1-5.034 5.035h0a5.034 5.034 0 0 1-5.035-5.035m0 5.035V10.533m-5.302 15.103a5.034 5.034 0 0 1-5.035 5.035h0a5.034 5.034 0 0 1-5.034-5.035v-3.272a5.034 5.034 0 0 1 5.034-5.035h0a5.034 5.034 0 0 1 5.035 5.035m0-5.035v20.138'/></svg>"
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +040014
15images: {
16 qbittorrent: {
17 registry: "lscr.io"
18 repository: "linuxserver"
19 name: "qbittorrent"
20 tag: "4.5.3"
21 pullPolicy: "IfNotPresent"
22 }
23}
24
25charts: {
26 qbittorrent: {
giof8843412024-05-22 16:38:05 +040027 kind: "GitRepository"
28 address: "https://github.com/giolekva/pcloud.git"
29 branch: "main"
30 path: "charts/qbittorrent"
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +040031 }
32}
33
34helm: {
35 qbittorrent: {
36 chart: charts.qbittorrent
37 values: {
38 pcloudInstanceId: global.id
39 ingress: {
40 className: input.network.ingressClass
41 domain: _domain
42 }
43 webui: port: 8080
44 bittorrent: port: 6881
45 storage: size: "100Gi"
46 image: {
47 repository: images.qbittorrent.fullName
48 tag: images.qbittorrent.tag
49 pullPolicy: images.qbittorrent.pullPolicy
50 }
51 }
52 }
53}