Commit new App releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
226db91632
commit
4d8bf1598c
|
@ -1,6 +1,16 @@
|
|||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="jackett-9.0.8"></a>
|
||||
### [jackett-9.0.8](https://github.com/truecharts/apps/compare/jackett-9.0.7...jackett-9.0.8) (2021-11-06)
|
||||
|
||||
#### Fix
|
||||
|
||||
* correct typo in include
|
||||
* correct duplicate variable name in questions.yaml
|
||||
|
||||
|
||||
|
||||
<a name="jackett-9.0.7"></a>
|
||||
### [jackett-9.0.7](https://github.com/truecharts/apps/compare/jackett-9.0.6...jackett-9.0.7) (2021-11-06)
|
||||
|
||||
|
@ -87,13 +97,3 @@
|
|||
<a name="jackett-8.0.20"></a>
|
||||
### [jackett-8.0.20](https://github.com/truecharts/apps/compare/jackett-8.0.19...jackett-8.0.20) (2021-10-20)
|
||||
|
||||
#### Chore
|
||||
|
||||
* bump versions to rerelease and fix icons
|
||||
|
||||
|
||||
|
||||
<a name="jackett-8.0.19"></a>
|
||||
### [jackett-8.0.19](https://github.com/truecharts/apps/compare/jackett-8.0.18...jackett-8.0.19) (2021-10-19)
|
||||
|
||||
#### Chore
|
|
@ -3,4 +3,4 @@ dependencies:
|
|||
repository: https://truecharts.org
|
||||
version: 8.4.0
|
||||
digest: sha256:56617a20b6af555514f5c1a10a41e7067e10aef749c30bbf312c2c73542ecaca
|
||||
generated: "2021-11-06T11:02:05.301657449Z"
|
||||
generated: "2021-11-06T12:02:00.595049168Z"
|
|
@ -17,14 +17,11 @@ maintainers:
|
|||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: truecharts.org
|
||||
- email: kjeld@schouten-lebbing.nl
|
||||
name: Ornias1993
|
||||
url: truecharts.org
|
||||
name: jackett
|
||||
sources:
|
||||
- https://github.com/Jackett/Jackett
|
||||
type: application
|
||||
version: 9.0.7
|
||||
version: 9.0.8
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
|
@ -109,7 +109,7 @@ questions:
|
|||
description: "RollingUpdate: Create new pods and then kill old ones"
|
||||
- value: "OnDelete"
|
||||
description: "(Legacy) OnDelete: ignore .spec.template changes"
|
||||
- variable: advanced
|
||||
- variable: expert
|
||||
label: "Show Expert Configuration Options"
|
||||
schema:
|
||||
type: boolean
|
||||
|
@ -288,7 +288,51 @@ questions:
|
|||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
# Include{serviceselector}
|
||||
- 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: "NodePort"
|
||||
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: main
|
||||
label: "Main Service Port Configuration"
|
||||
schema:
|
Loading…
Reference in New Issue