Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2021-11-08 09:00:03 +00:00
parent edf11c78f7
commit edacb216eb
25 changed files with 163 additions and 59 deletions

View File

@ -1,6 +1,15 @@
# Changelog<br>
<a name="qbittorrent-9.0.8"></a>
### [qbittorrent-9.0.8](https://github.com/truecharts/apps/compare/qbittorrent-9.0.7...qbittorrent-9.0.8) (2021-11-08)
#### Fix
* Split torrent service to allow for the use of LoadBalancer servicetype
<a name="qbittorrent-9.0.7"></a>
### [qbittorrent-9.0.7](https://github.com/truecharts/apps/compare/qbittorrent-9.0.6...qbittorrent-9.0.7) (2021-11-07)
@ -88,12 +97,3 @@
<a name="qbittorrent-8.0.17"></a>
### [qbittorrent-8.0.17](https://github.com/truecharts/apps/compare/qbittorrent-8.0.14...qbittorrent-8.0.17) (2021-10-20)
#### Chore
* bump apps, remove duplicates and move incubator to stable for RC1
* update non-major deps helm releases ([#1213](https://github.com/truecharts/apps/issues/1213))
#### Fix
* reenable postgresql migration scripting and bump all to force update
* use correct PVC storageClass when using postgresql as a dependency on SCALE ([#1212](https://github.com/truecharts/apps/issues/1212))

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 8.5.3
digest: sha256:0cc5e4101e5ff85c878493dc322d39b7b26b300badde2db93ffddaf6575dafa4
generated: "2021-11-07T19:32:30.670350664Z"
generated: "2021-11-08T08:55:13.169493143Z"

View File

@ -19,7 +19,7 @@ maintainers:
name: qbittorrent
sources: null
type: application
version: 9.0.7
version: 9.0.8
annotations:
truecharts.org/catagories: |
- media

View File

@ -28,14 +28,14 @@ You will, however, be able to use all values referenced in the common chart here
| service.main.ports.main.port | int | `8080` | |
| service.main.ports.main.targetPort | int | `8080` | |
| service.torrent.enabled | bool | `true` | |
| service.torrent.ports.tcp.enabled | bool | `true` | |
| service.torrent.ports.tcp.port | int | `6881` | |
| service.torrent.ports.tcp.protocol | string | `"TCP"` | |
| service.torrent.ports.tcp.targetPort | int | `6881` | |
| service.torrent.ports.udp.enabled | bool | `true` | |
| service.torrent.ports.udp.port | int | `6881` | |
| service.torrent.ports.udp.protocol | string | `"UDP"` | |
| service.torrent.ports.udp.targetPort | int | `6881` | |
| service.torrent.type | string | `"ClusterIP"` | |
| service.torrent.ports.torrent.enabled | bool | `true` | |
| service.torrent.ports.torrent.port | int | `6881` | |
| service.torrent.ports.torrent.protocol | string | `"TCP"` | |
| service.torrent.ports.torrent.targetPort | int | `6881` | |
| service.torrentudp.enabled | bool | `true` | |
| service.torrentudp.ports.torrentudp.enabled | bool | `true` | |
| service.torrentudp.ports.torrentudp.port | int | `6881` | |
| service.torrentudp.ports.torrentudp.protocol | string | `"UDP"` | |
| service.torrentudp.ports.torrentudp.targetPort | int | `6881` | |
All Rights Reserved - The TrueCharts Project

View File

@ -22,14 +22,16 @@ service:
targetPort: 8080
torrent:
enabled: true
type: ClusterIP
ports:
tcp:
torrent:
enabled: true
port: 6881
targetPort: 6881
protocol: TCP
udp:
torrentudp:
enabled: true
ports:
torrentudp:
enabled: true
port: 6881
targetPort: 6881

View File

@ -381,8 +381,8 @@ questions:
- variable: torrent
label: "Torrent Service"
description: "Torrent Service"
label: "TCP Torrent Service"
description: "Torrent service"
schema:
type: dict
attrs:
@ -431,7 +431,7 @@ questions:
schema:
type: dict
attrs:
- variable: tcp
- variable: torrent
label: "TCP Service Port Configuration"
schema:
type: dict
@ -469,18 +469,68 @@ questions:
description: "The internal(!) port on the container the Application runs on"
schema:
type: int
default: 51413
default: 6881
- variable: port
label: "Container Port"
schema:
type: int
default: 51413
default: 6881
editable: true
required: true
- variable: udp
- variable: torrentudp
label: "UDP Torrent Service"
description: "Torrent service"
schema:
type: dict
attrs:
- variable: enabled
label: "Enable the service"
schema:
type: boolean
default: true
hidden: true
- variable: type
label: "Service Type"
description: "ClusterIP's are only internally available, nodePorts expose the container to the host node System, Loadbalancer exposes the service using the system loadbalancer"
schema:
type: string
default: "Simple"
enum:
- value: "Simple"
description: "Simple"
- value: "ClusterIP"
description: "ClusterIP"
- value: "NodePort"
description: "NodePort (Advanced)"
- value: "LoadBalancer"
description: "LoadBalancer (Advanced)"
- variable: loadBalancerIP
label: "LoadBalancer IP"
description: "LoadBalancerIP"
schema:
show_if: [["type", "=", "LoadBalancer"]]
type: string
default: ""
- variable: externalIPs
label: "External IP's"
description: "External IP's"
schema:
show_if: [["type", "=", "LoadBalancer"]]
type: list
default: []
items:
- variable: externalIP
label: "External IP"
schema:
type: string
- variable: ports
label: "Service's Port(s) Configuration"
schema:
type: dict
attrs:
- variable: torrentudp
label: "UDP Service Port Configuration"
schema:
type: dict
@ -518,13 +568,13 @@ questions:
description: "The internal(!) port on the container the Application runs on"
schema:
type: int
default: 51413
default: 6881
- variable: port
label: "Container Port"
schema:
type: int
default: 51413
default: 6881
editable: true
required: true

View File

@ -1,6 +1,15 @@
# Changelog<br>
<a name="transmission-9.0.7"></a>
### [transmission-9.0.7](https://github.com/truecharts/apps/compare/transmission-9.0.6...transmission-9.0.7) (2021-11-08)
#### Fix
* Split torrent service to allow for the use of LoadBalancer servicetype
<a name="transmission-9.0.6"></a>
### [transmission-9.0.6](https://github.com/truecharts/apps/compare/transmission-9.0.5...transmission-9.0.6) (2021-11-07)
@ -88,12 +97,3 @@
<a name="transmission-8.0.13"></a>
### [transmission-8.0.13](https://github.com/truecharts/apps/compare/transmission-8.0.12...transmission-8.0.13) (2021-10-20)
#### Chore
* bump versions to rerelease and fix icons
<a name="transmission-8.0.12"></a>

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 8.5.3
digest: sha256:0cc5e4101e5ff85c878493dc322d39b7b26b300badde2db93ffddaf6575dafa4
generated: "2021-11-07T19:18:45.274172522Z"
generated: "2021-11-08T08:55:44.745815769Z"

View File

@ -25,7 +25,7 @@ sources:
- https://github.com/transmission/transmission
- https://hub.docker.com/r/linuxserver/transmission
type: application
version: 9.0.6
version: 9.0.7
annotations:
truecharts.org/catagories: |
- download-tools

View File

@ -23,14 +23,14 @@ You will, however, be able to use all values referenced in the common chart here
| service.main.ports.main.port | int | `9091` | |
| service.main.ports.main.targetPort | int | `9091` | |
| service.torrent.enabled | bool | `true` | |
| service.torrent.ports.tcp.enabled | bool | `true` | |
| service.torrent.ports.tcp.port | int | `51413` | |
| service.torrent.ports.tcp.protocol | string | `"TCP"` | |
| service.torrent.ports.tcp.targetPort | int | `51413` | |
| service.torrent.ports.udp.enabled | bool | `true` | |
| service.torrent.ports.udp.port | int | `51413` | |
| service.torrent.ports.udp.protocol | string | `"UDP"` | |
| service.torrent.ports.udp.targetPort | int | `51413` | |
| service.torrent.type | string | `"ClusterIP"` | |
| service.torrent.ports.torrent.enabled | bool | `true` | |
| service.torrent.ports.torrent.port | int | `51413` | |
| service.torrent.ports.torrent.protocol | string | `"TCP"` | |
| service.torrent.ports.torrent.targetPort | int | `51413` | |
| service.torrentudp.enabled | bool | `true` | |
| service.torrentudp.ports.torrentudp.enabled | bool | `true` | |
| service.torrentudp.ports.torrentudp.port | int | `51413` | |
| service.torrentudp.ports.torrentudp.protocol | string | `"UDP"` | |
| service.torrentudp.ports.torrentudp.targetPort | int | `51413` | |
All Rights Reserved - The TrueCharts Project

View File

@ -13,14 +13,16 @@ service:
targetPort: 9091
torrent:
enabled: true
type: ClusterIP
ports:
tcp:
torrent:
enabled: true
port: 51413
targetPort: 51413
protocol: TCP
udp:
torrentudp:
enabled: true
ports:
torrentudp:
enabled: true
port: 51413
targetPort: 51413

View File

@ -723,7 +723,7 @@ questions:
- variable: torrent
label: "Torrent Service"
label: "TCP Torrent Service"
description: "Torrent service"
schema:
type: dict
@ -773,7 +773,7 @@ questions:
schema:
type: dict
attrs:
- variable: tcp
- variable: torrent
label: "TCP Service Port Configuration"
schema:
type: dict
@ -821,8 +821,58 @@ questions:
editable: true
required: true
- variable: udp
- variable: torrentudp
label: "UDP Torrent Service"
description: "Torrent service"
schema:
type: dict
attrs:
- variable: enabled
label: "Enable the service"
schema:
type: boolean
default: true
hidden: true
- variable: type
label: "Service Type"
description: "ClusterIP's are only internally available, nodePorts expose the container to the host node System, Loadbalancer exposes the service using the system loadbalancer"
schema:
type: string
default: "Simple"
enum:
- value: "Simple"
description: "Simple"
- value: "ClusterIP"
description: "ClusterIP"
- value: "NodePort"
description: "NodePort (Advanced)"
- value: "LoadBalancer"
description: "LoadBalancer (Advanced)"
- variable: loadBalancerIP
label: "LoadBalancer IP"
description: "LoadBalancerIP"
schema:
show_if: [["type", "=", "LoadBalancer"]]
type: string
default: ""
- variable: externalIPs
label: "External IP's"
description: "External IP's"
schema:
show_if: [["type", "=", "LoadBalancer"]]
type: list
default: []
items:
- variable: externalIP
label: "External IP"
schema:
type: string
- variable: ports
label: "Service's Port(s) Configuration"
schema:
type: dict
attrs:
- variable: torrentudp
label: "UDP Service Port Configuration"
schema:
type: dict