Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2021-11-06 11:05:10 +00:00
parent 0bd82d2e3e
commit 226db91632
14 changed files with 188 additions and 207 deletions

View File

@ -1,6 +0,0 @@
dependencies:
- name: common
repository: https://truecharts.org
version: 8.3.19
digest: sha256:cfd9093f994d937b1e240760e95ded1abbdd144d50be1cfc0dd94bc3386ca618
generated: "2021-11-02T18:17:35.948891275Z"

View File

@ -1,6 +1,15 @@
# Changelog<br> # Changelog<br>
<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)
#### Chore
* refactor ServiceType to simplify it ([#1285](https://github.com/truecharts/apps/issues/1285))
<a name="jackett-9.0.6"></a> <a name="jackett-9.0.6"></a>
### [jackett-9.0.6](https://github.com/truecharts/apps/compare/jackett-9.0.5...jackett-9.0.6) (2021-11-02) ### [jackett-9.0.6](https://github.com/truecharts/apps/compare/jackett-9.0.5...jackett-9.0.6) (2021-11-02)
@ -88,12 +97,3 @@
### [jackett-8.0.19](https://github.com/truecharts/apps/compare/jackett-8.0.18...jackett-8.0.19) (2021-10-19) ### [jackett-8.0.19](https://github.com/truecharts/apps/compare/jackett-8.0.18...jackett-8.0.19) (2021-10-19)
#### Chore #### Chore
* update helm chart common to v8.3.13 ([#1184](https://github.com/truecharts/apps/issues/1184))
* update non-major ([#1174](https://github.com/truecharts/apps/issues/1174))
#### Refactor
* Project Eclipse Part 6, move questions.yaml to root App folder ([#1182](https://github.com/truecharts/apps/issues/1182))

View File

@ -0,0 +1,6 @@
dependencies:
- name: common
repository: https://truecharts.org
version: 8.4.0
digest: sha256:56617a20b6af555514f5c1a10a41e7067e10aef749c30bbf312c2c73542ecaca
generated: "2021-11-06T11:02:05.301657449Z"

View File

@ -3,7 +3,7 @@ appVersion: "0.19.124"
dependencies: dependencies:
- name: common - name: common
repository: https://truecharts.org repository: https://truecharts.org
version: 8.3.19 version: 8.4.0
deprecated: false deprecated: false
description: API Support for your favorite torrent trackers. description: API Support for your favorite torrent trackers.
home: https://github.com/truecharts/apps/tree/master/charts/stable/jackett home: https://github.com/truecharts/apps/tree/master/charts/stable/jackett
@ -24,7 +24,7 @@ name: jackett
sources: sources:
- https://github.com/Jackett/Jackett - https://github.com/Jackett/Jackett
type: application type: application
version: 9.0.6 version: 9.0.7
annotations: annotations:
truecharts.org/catagories: | truecharts.org/catagories: |
- media - media

View File

@ -17,7 +17,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
| https://truecharts.org | common | 8.3.19 | | https://truecharts.org | common | 8.4.0 |
## Installing the Chart ## Installing the Chart

Binary file not shown.

View File

@ -26,5 +26,7 @@ You will, however, be able to use all values referenced in the common chart here
| securityContext.readOnlyRootFilesystem | bool | `false` | | | securityContext.readOnlyRootFilesystem | bool | `false` | |
| service.main.enabled | bool | `true` | | | service.main.enabled | bool | `true` | |
| service.main.ports.main.port | int | `9117` | | | service.main.ports.main.port | int | `9117` | |
| service.main.ports.main.targetPort | int | `9117` | |
| service.main.protocol | string | `"HTTP"` | |
All Rights Reserved - The TrueCharts Project All Rights Reserved - The TrueCharts Project

View File

@ -11,8 +11,10 @@ securityContext:
service: service:
main: main:
enabled: true enabled: true
protocol: "HTTP"
ports: ports:
main: main:
targetPort: 9117
port: 9117 port: 9117
probes: probes:

View File

@ -60,111 +60,119 @@ questions:
type: boolean type: boolean
default: true default: true
hidden: true hidden: true
- variable: controller - variable: controller
group: "Controller" group: "Controller"
label: "" label: ""
schema: schema:
type: dict type: dict
attrs: attrs:
- variable: type
description: "Please specify type of workload to deploy"
label: "(Advanced) Controller Type"
schema:
type: string
default: "deployment"
required: true
enum:
- value: "deployment"
description: "Deployment"
- value: "statefulset"
description: "Statefulset"
- value: "daemonset"
description: "Daemonset"
- variable: replicas
description: "Number of desired pod replicas"
label: "Desired Replicas"
schema:
type: int
default: 1
required: true
- variable: strategy
description: "Please specify type of workload to deploy"
label: "(Advanced) Update Strategy"
schema:
type: string
default: "Recreate"
required: true
enum:
- value: "Recreate"
description: "Recreate: Kill existing pods before creating new ones"
- value: "RollingUpdate"
description: "RollingUpdate: Create new pods and then kill old ones"
- value: "OnDelete"
description: "(Legacy) OnDelete: ignore .spec.template changes"
- variable: advanced - variable: advanced
label: "Show Expert Configuration Options" label: "Show Advanced Controller Settings"
schema: schema:
type: boolean type: boolean
default: false default: false
show_subquestions_if: true show_subquestions_if: true
subquestions: subquestions:
- variable: extraArgs - variable: type
label: "Extra Args" description: "Please specify type of workload to deploy"
label: "(Advanced) Controller Type"
schema: schema:
type: list type: string
default: [] default: "deployment"
items: required: true
- variable: argItem enum:
label: "Arg" - value: "deployment"
schema: description: "Deployment"
type: dict - value: "statefulset"
attrs: description: "Statefulset"
- variable: name - value: "daemonset"
label: "Name" description: "Daemonset"
schema: - variable: replicas
type: string description: "Number of desired pod replicas"
- variable: value label: "Desired Replicas"
label: "Value"
schema:
type: string
- variable: labelsList
label: "Controller Labels"
schema: schema:
type: list type: int
default: [] default: 1
items: required: true
- variable: labelItem - variable: strategy
label: "Label" description: "Please specify type of workload to deploy"
schema: label: "(Advanced) Update Strategy"
type: dict
attrs:
- variable: name
label: "Name"
schema:
type: string
- variable: value
label: "Value"
schema:
type: string
- variable: annotationsList
label: " Controller Annotations"
schema: schema:
type: list type: string
default: [] default: "Recreate"
items: required: true
- variable: annotationItem enum:
label: "Label" - value: "Recreate"
description: "Recreate: Kill existing pods before creating new ones"
- value: "RollingUpdate"
description: "RollingUpdate: Create new pods and then kill old ones"
- value: "OnDelete"
description: "(Legacy) OnDelete: ignore .spec.template changes"
- variable: advanced
label: "Show Expert Configuration Options"
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: extraArgs
label: "Extra Args"
schema: schema:
type: dict type: list
attrs: default: []
- variable: name items:
label: "Name" - variable: argItem
label: "Arg"
schema: schema:
type: string type: dict
- variable: value attrs:
label: "Value" - variable: name
label: "Name"
schema:
type: string
- variable: value
label: "Value"
schema:
type: string
- variable: labelsList
label: "Controller Labels"
schema:
type: list
default: []
items:
- variable: labelItem
label: "Label"
schema: schema:
type: string type: dict
attrs:
- variable: name
label: "Name"
schema:
type: string
- variable: value
label: "Value"
schema:
type: string
- variable: annotationsList
label: " Controller Annotations"
schema:
type: list
default: []
items:
- variable: annotationItem
label: "Label"
schema:
type: dict
attrs:
- variable: name
label: "Name"
schema:
type: string
- variable: value
label: "Value"
schema:
type: string
- variable: env - variable: env
group: "Container Configuration" group: "Container Configuration"
@ -280,97 +288,57 @@ questions:
schema: schema:
type: dict type: dict
attrs: attrs:
- variable: enabled # Include{serviceselector}
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: "NodePort"
description: "NodePort"
- value: "ClusterIP"
description: "ClusterIP"
- value: "LoadBalancer"
description: "LoadBalancer"
- 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 - variable: main
label: "Main Service Port Configuration" label: "Main Service Port Configuration"
schema: schema:
type: dict type: dict
attrs: attrs:
- variable: enabled - variable: advanced
label: "Enable the port" label: "Show Advanced settings"
schema: schema:
type: boolean type: boolean
default: true default: false
hidden: true show_subquestions_if: true
- variable: protocol subquestions:
label: "Port Type" - variable: enabled
schema: label: "Enable the port"
type: string schema:
default: "HTTP" type: boolean
enum: default: true
- value: HTTP - variable: protocol
description: "HTTP" label: "Port Type"
- value: "HTTPS" schema:
description: "HTTPS" type: string
- value: TCP default: "HTTP"
description: "TCP" enum:
- value: "UDP" - value: HTTP
description: "UDP" description: "HTTP"
- variable: targetPort - value: "HTTPS"
label: "Target Port" description: "HTTPS"
description: "This port exposes the container port on the service" - value: TCP
schema: description: "TCP"
type: int - value: "UDP"
default: 9117 description: "UDP"
editable: false - variable: nodePort
hidden: true label: "Node Port (Optional)"
description: "This port gets exposed to the node. Only considered when service type is NodePort, Simple or LoadBalancer"
schema:
type: int
min: 9000
max: 65535
- variable: targetPort
label: "Target Port"
description: "The internal(!) port on the container the Application runs on"
schema:
type: int
default: 9117
- variable: port - variable: port
label: "Container Port" label: "This port exposes the container port on the service"
schema: schema:
type: int type: int
default: 9117 default: 9117
editable: true
required: true required: true
- variable: nodePort
label: "Node Port (Optional)"
description: "This port gets exposed to the node. Only considered when service type is NodePort"
schema:
type: int
min: 9000
max: 65535
default: 36009
- variable: serviceexpert - variable: serviceexpert
group: "Networking and Services" group: "Networking and Services"
@ -480,6 +448,8 @@ questions:
type: string type: string
default: "NodePort" default: "NodePort"
enum: enum:
- value: "Simple"
description: "Simple"
- value: "NodePort" - value: "NodePort"
description: "NodePort" description: "NodePort"
- value: "ClusterIP" - value: "ClusterIP"
@ -1217,32 +1187,39 @@ questions:
default: "" default: ""
required: true required: true
- variable: securityContext - variable: advancedSecurity
label: "Show Advanced Security Settings"
group: "Security and Permissions" group: "Security and Permissions"
label: "Security Context"
schema: schema:
type: dict type: boolean
attrs: default: false
- variable: privileged show_subquestions_if: true
label: "Privileged mode" subquestions:
- variable: securityContext
label: "Security Context"
schema: schema:
type: boolean type: dict
default: false attrs:
- variable: readOnlyRootFilesystem - variable: privileged
label: "ReadOnly Root Filesystem" label: "Privileged mode"
schema: schema:
type: boolean type: boolean
default: false default: false
- variable: allowPrivilegeEscalation - variable: readOnlyRootFilesystem
label: "Allow Privilege Escalation" label: "ReadOnly Root Filesystem"
schema: schema:
type: boolean type: boolean
default: false default: false
- variable: runAsNonRoot - variable: allowPrivilegeEscalation
label: "runAsNonRoot" label: "Allow Privilege Escalation"
schema: schema:
type: boolean type: boolean
default: true default: false
- variable: runAsNonRoot
label: "runAsNonRoot"
schema:
type: boolean
default: true
- variable: podSecurityContext - variable: podSecurityContext
group: "Security and Permissions" group: "Security and Permissions"