Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-06-26 16:34:44 +00:00
parent 4669b1fa3b
commit 65312e04e6
13 changed files with 147 additions and 80 deletions

View File

@ -1,9 +0,0 @@
## [avidemux-4.0.23](https://github.com/truecharts/charts/compare/avidemux-4.0.22...avidemux-4.0.23) (2023-06-13)
### Chore
- update helm chart common to 12.14.2 ([#9599](https://github.com/truecharts/charts/issues/9599))

View File

@ -4,6 +4,15 @@
## [avidemux-4.0.24](https://github.com/truecharts/charts/compare/avidemux-4.0.23...avidemux-4.0.24) (2023-06-26)
### Chore
- update container image tccr.io/truecharts/avidemux to v23.06.1 ([#9953](https://github.com/truecharts/charts/issues/9953))
## [avidemux-4.0.23](https://github.com/truecharts/charts/compare/avidemux-4.0.22...avidemux-4.0.23) (2023-06-13) ## [avidemux-4.0.23](https://github.com/truecharts/charts/compare/avidemux-4.0.22...avidemux-4.0.23) (2023-06-13)
### Chore ### Chore
@ -88,12 +97,3 @@
## [avidemux-4.0.14](https://github.com/truecharts/charts/compare/avidemux-4.0.13...avidemux-4.0.14) (2023-05-22)
### Feat
- Add Global Pod Options ([#9007](https://github.com/truecharts/charts/issues/9007))

View File

@ -1,5 +1,5 @@
apiVersion: v2 apiVersion: v2
appVersion: "23.04.1" appVersion: "23.06.1"
dependencies: dependencies:
- name: common - name: common
repository: https://library-charts.truecharts.org repository: https://library-charts.truecharts.org
@ -21,7 +21,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/avidemux - https://github.com/truecharts/charts/tree/master/charts/stable/avidemux
- https://github.com/jlesage/docker-avidemux - https://github.com/jlesage/docker-avidemux
type: application type: application
version: 4.0.23 version: 4.0.24
annotations: annotations:
truecharts.org/catagories: | truecharts.org/catagories: |
- media - media

View File

@ -12,7 +12,7 @@ For more information about this App, please check the docs on the TrueCharts [we
## Support ## Support
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE%20Apps/Important-MUST-READ). - Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE/guides/scale-intro).
- See the [Website](https://truecharts.org) - See the [Website](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr) - Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)

View File

@ -0,0 +1,9 @@
## [avidemux-4.0.24](https://github.com/truecharts/charts/compare/avidemux-4.0.23...avidemux-4.0.24) (2023-06-26)
### Chore
- update container image tccr.io/truecharts/avidemux to v23.06.1 ([#9953](https://github.com/truecharts/charts/issues/9953))

View File

@ -1,6 +1,6 @@
image: image:
repository: tccr.io/truecharts/avidemux repository: tccr.io/truecharts/avidemux
tag: v23.04.1@sha256:cb1f9093704196a2891eef4f587564fe0702e0bf82fec8ec8d611a093505c255 tag: v23.06.1@sha256:f805b61c9f4d427d60453f6fee009255ed584931e6f01b913b05c34c37c151a2
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
securityContext: securityContext:

View File

@ -415,6 +415,7 @@ questions:
description: Interface Configuration description: Interface Configuration
label: Interface Configuration label: Interface Configuration
schema: schema:
additional_attrs: true
type: dict type: dict
$ref: $ref:
- "normalize/interfaceConfiguration" - "normalize/interfaceConfiguration"
@ -431,6 +432,7 @@ questions:
description: Define how IP Address will be managed description: Define how IP Address will be managed
label: IP Address Management label: IP Address Management
schema: schema:
additional_attrs: true
type: dict type: dict
required: true required: true
attrs: attrs:
@ -661,8 +663,38 @@ questions:
description: Automatically set permissions on install description: Automatically set permissions on install
schema: schema:
show_if: [["type", "=", "hostPath"]] show_if: [["type", "=", "hostPath"]]
hidden: true
type: boolean type: boolean
default: false default: false
- variable: autoPermissions
label: Automatic Permissions Configuration
description: Automatically set permissions
schema:
show_if: [["type", "!=", "pvc"]]
type: dict
additional_attrs: true
attrs:
- variable: chown
label: Run CHOWN
description: |
It will run CHOWN on the path with the given fsGroup
schema:
type: boolean
default: false
- variable: chmod
label: Run CHMOD
description: |
It will run CHMOD on the path with the given value
schema:
type: string
default: "775"
- variable: recursive
label: Recursive
description: |
It will run CHOWN and CHMOD recursively
schema:
type: boolean
default: false
- variable: readOnly - variable: readOnly
label: Read Only label: Read Only
schema: schema:
@ -731,8 +763,38 @@ questions:
description: Automatically set permissions on install description: Automatically set permissions on install
schema: schema:
show_if: [["type", "=", "hostPath"]] show_if: [["type", "=", "hostPath"]]
hidden: true
type: boolean type: boolean
default: false default: false
- variable: autoPermissions
label: Automatic Permissions Configuration
description: Automatically set permissions
schema:
show_if: [["type", "!=", "pvc"]]
type: dict
additional_attrs: true
attrs:
- variable: chown
label: Run CHOWN
description: |
It will run CHOWN on the path with the given fsGroup
schema:
type: boolean
default: false
- variable: chmod
label: Run CHMOD
description: |
It will run CHMOD on the path with the given value
schema:
type: string
default: "775"
- variable: recursive
label: Recursive
description: |
It will run CHOWN and CHMOD recursively
schema:
type: boolean
default: false
- variable: readOnly - variable: readOnly
label: Read Only label: Read Only
schema: schema:
@ -938,64 +1000,65 @@ questions:
schema: schema:
type: boolean type: boolean
default: false default: false
show_subquestions_if: true - variable: entrypoint
subquestions: label: (Advanced) Traefik Entrypoint
- variable: entrypoint description: Entrypoint used by Traefik when using Traefik as Ingress Provider
label: (Advanced) Traefik Entrypoint schema:
description: Entrypoint used by Traefik when using Traefik as Ingress Provider type: string
default: websecure
show_if: [["advanced", "=", true]]
required: true
- variable: ingressClassName
label: (Advanced/Optional) IngressClass Name
schema:
type: string
show_if: [["advanced", "=", true]]
default: ""
- variable: tls
label: TLS-Settings
schema:
type: list
show_if: [["advanced", "=", true]]
default: []
items:
- variable: tlsEntry
label: Host
schema: schema:
type: string additional_attrs: true
default: websecure type: dict
required: true attrs:
- variable: ingressClassName - variable: hosts
label: (Advanced/Optional) IngressClass Name label: Certificate Hosts
schema:
type: string
default: ""
- variable: tls
label: TLS-Settings
schema:
type: list
default: []
items:
- variable: tlsEntry
label: Host
schema: schema:
additional_attrs: true type: list
type: dict default: []
attrs: items:
- variable: hosts - variable: host
label: Certificate Hosts label: Host
schema: schema:
type: list type: string
default: [] default: ""
items: required: true
- variable: host
label: Host
schema:
type: string
default: ""
required: true
- variable: certificateIssuer - variable: certificateIssuer
label: Use Cert-Manager clusterIssuer label: Use Cert-Manager clusterIssuer
description: 'add the name of your cert-manager clusterIssuer here for automatic tls certificates.' description: 'add the name of your cert-manager clusterIssuer here for automatic tls certificates.'
schema: schema:
type: string type: string
default: "" default: ""
- variable: scaleCert - variable: scaleCert
label: Use TrueNAS SCALE Certificate (Deprecated) label: Use TrueNAS SCALE Certificate (Deprecated)
schema: schema:
show_if: [["certificateIssuer", "=", ""]] show_if: [["certificateIssuer", "=", ""]]
type: int type: int
$ref: $ref:
- "definitions/certificate" - "definitions/certificate"
- variable: secretName - variable: secretName
label: Use Custom Secret (Advanced) label: Use Custom Secret (Advanced)
schema: schema:
show_if: [["certificateIssuer", "=", ""]] show_if: [["certificateIssuer", "=", ""]]
type: string type: string
default: "" default: ""
- variable: ingressList - variable: ingressList
label: Add Manual Custom Ingresses label: Add Manual Custom Ingresses
group: Ingress group: Ingress
@ -1260,14 +1323,14 @@ questions:
attrs: attrs:
- variable: cpu - variable: cpu
label: CPU label: CPU
description: "1000m means 1 hyperthread. Detailed info: https://truecharts.org/docs/manual/SCALE%20Apps/indepth/validation" description: "1000m means 1 hyperthread. Detailed info: https://truecharts.org/manual/SCALE/validation"
schema: schema:
type: string type: string
default: 4000m default: 4000m
valid_chars: '^(?!^0(\.0|m|)$)([0-9]+)(\.[0-9]|m?)$' valid_chars: '^(?!^0(\.0|m|)$)([0-9]+)(\.[0-9]|m?)$'
- variable: memory - variable: memory
label: RAM label: RAM
description: "1Gi means 1 Gibibyte RAM. Detailed info: https://truecharts.org/docs/manual/SCALE%20Apps/indepth/validation" description: "1Gi means 1 Gibibyte RAM. Detailed info: https://truecharts.org/manual/SCALE/validation"
schema: schema:
type: string type: string
default: 8Gi default: 8Gi
@ -1281,7 +1344,7 @@ questions:
attrs: attrs:
- variable: cpu - variable: cpu
label: CPU label: CPU
description: "1000m means 1 hyperthread. Detailed info: https://truecharts.org/docs/manual/SCALE%20Apps/indepth/validation" description: "1000m means 1 hyperthread. Detailed info: https://truecharts.org/manual/SCALE/validation"
schema: schema:
type: string type: string
default: 10m default: 10m
@ -1289,7 +1352,7 @@ questions:
valid_chars: '^(?!^0(\.0|m|)$)([0-9]+)(\.[0-9]|m?)$' valid_chars: '^(?!^0(\.0|m|)$)([0-9]+)(\.[0-9]|m?)$'
- variable: memory - variable: memory
label: "RAM" label: "RAM"
description: "1Gi means 1 Gibibyte RAM. Detailed info: https://truecharts.org/docs/manual/SCALE%20Apps/indepth/validation" description: "1Gi means 1 Gibibyte RAM. Detailed info: https://truecharts.org/manual/SCALE/validation"
schema: schema:
type: string type: string
default: 50Mi default: 50Mi
@ -1353,6 +1416,7 @@ questions:
- variable: gpu - variable: gpu
label: Select GPU label: Select GPU
schema: schema:
additional_attrs: true
type: dict type: dict
$ref: $ref:
- "definitions/gpuConfiguration" - "definitions/gpuConfiguration"
@ -1940,6 +2004,7 @@ questions:
- variable: openvpn - variable: openvpn
label: OpenVPN Settings label: OpenVPN Settings
schema: schema:
additional_attrs: true
type: dict type: dict
show_if: [["type", "=", "openvpn"]] show_if: [["type", "=", "openvpn"]]
attrs: attrs:
@ -1960,6 +2025,7 @@ questions:
- variable: tailscale - variable: tailscale
label: Tailscale Settings label: Tailscale Settings
schema: schema:
additional_attrs: true
type: dict type: dict
show_if: [["type", "=", "tailscale"]] show_if: [["type", "=", "tailscale"]]
attrs: attrs:

View File

@ -2,3 +2,4 @@ icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/avidemux.png
categories: categories:
- media - media
screenshots: []