| Giorgi Lekveishvili | e009a5d | 2024-01-05 14:10:11 +0400 | [diff] [blame] | 1 | input: { |
| gio | 44f621b | 2024-04-29 09:44:38 +0400 | [diff] [blame] | 2 | network: #Network @name(Network) |
| 3 | subdomain: string @name(Subdomain) |
| Giorgi Lekveishvili | e009a5d | 2024-01-05 14:10:11 +0400 | [diff] [blame] | 4 | } |
| 5 | |
| 6 | _domain: "\(input.subdomain).\(input.network.domain)" |
| gio | 09a3e5b | 2024-04-26 14:11:06 +0400 | [diff] [blame] | 7 | url: "https://\(_domain)" |
| Giorgi Lekveishvili | e009a5d | 2024-01-05 14:10:11 +0400 | [diff] [blame] | 8 | |
| gio | 44f621b | 2024-04-29 09:44:38 +0400 | [diff] [blame] | 9 | name: "qBitorrent" |
| Giorgi Lekveishvili | ef21c13 | 2024-01-17 18:57:58 +0400 | [diff] [blame] | 10 | namespace: "app-qbittorrent" |
| Giorgi Lekveishvili | e009a5d | 2024-01-05 14:10:11 +0400 | [diff] [blame] | 11 | readme: "qbittorrent application will be installed on \(input.network.name) network and be accessible to any user on https://\(_domain)" |
| Giorgi Lekveishvili | ef21c13 | 2024-01-17 18:57:58 +0400 | [diff] [blame] | 12 | description: "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." |
| 13 | icon: "<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 Lekveishvili | e009a5d | 2024-01-05 14:10:11 +0400 | [diff] [blame] | 14 | |
| 15 | images: { |
| 16 | qbittorrent: { |
| 17 | registry: "lscr.io" |
| 18 | repository: "linuxserver" |
| 19 | name: "qbittorrent" |
| 20 | tag: "4.5.3" |
| 21 | pullPolicy: "IfNotPresent" |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | charts: { |
| 26 | qbittorrent: { |
| gio | f884341 | 2024-05-22 16:38:05 +0400 | [diff] [blame] | 27 | kind: "GitRepository" |
| 28 | address: "https://github.com/giolekva/pcloud.git" |
| 29 | branch: "main" |
| 30 | path: "charts/qbittorrent" |
| Giorgi Lekveishvili | e009a5d | 2024-01-05 14:10:11 +0400 | [diff] [blame] | 31 | } |
| 32 | } |
| 33 | |
| 34 | helm: { |
| 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 | } |