Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
3a0d489a0c
commit
ee5bd40e3f
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [mylar-9.0.27](https://github.com/truecharts/charts/compare/mylar-9.0.26...mylar-9.0.27) (2023-06-13)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm chart common to 12.14.2 ([#9599](https://github.com/truecharts/charts/issues/9599))
|
||||
|
||||
|
|
@ -4,6 +4,15 @@
|
|||
|
||||
|
||||
|
||||
## [mylar-9.0.28](https://github.com/truecharts/charts/compare/mylar-9.0.27...mylar-9.0.28) (2023-06-18)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/mylar3 to v0.7.2 ([#9751](https://github.com/truecharts/charts/issues/9751))
|
||||
|
||||
|
||||
|
||||
|
||||
## [mylar-9.0.27](https://github.com/truecharts/charts/compare/mylar-9.0.26...mylar-9.0.27) (2023-06-13)
|
||||
|
||||
### Chore
|
||||
|
@ -88,12 +97,3 @@
|
|||
- update container image tccr.io/truecharts/mylar3 to v0.7.2 ([#9173](https://github.com/truecharts/charts/issues/9173))
|
||||
|
||||
|
||||
|
||||
|
||||
## [mylar-9.0.18](https://github.com/truecharts/charts/compare/mylar-9.0.17...mylar-9.0.18) (2023-05-24)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#9125](https://github.com/truecharts/charts/issues/9125))
|
||||
|
||||
|
|
@ -19,7 +19,7 @@ sources:
|
|||
- https://github.com/truecharts/charts/tree/master/charts/stable/mylar
|
||||
- https://github.com/mylar3/mylar3
|
||||
- https://github.com/linuxserver/docker-mylar3
|
||||
version: 9.0.27
|
||||
version: 9.0.28
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [mylar-9.0.28](https://github.com/truecharts/charts/compare/mylar-9.0.27...mylar-9.0.28) (2023-06-18)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/mylar3 to v0.7.2 ([#9751](https://github.com/truecharts/charts/issues/9751))
|
||||
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/mylar3
|
||||
tag: v0.7.2@sha256:a02d7cca80424fe8adca962a82b1b9a8f999fa4518a46cae414d05c9060b6118
|
||||
tag: v0.7.2@sha256:681c9f8a98122036aa15b30cb75107e6e69be96b597d50621787dbd833aff26e
|
||||
pullPolicy: IfNotPresent
|
||||
service:
|
||||
main:
|
|
@ -304,6 +304,7 @@ questions:
|
|||
description: Interface Configuration
|
||||
label: Interface Configuration
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
$ref:
|
||||
- "normalize/interfaceConfiguration"
|
||||
|
@ -320,6 +321,7 @@ questions:
|
|||
description: Define how IP Address will be managed
|
||||
label: IP Address Management
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
required: true
|
||||
attrs:
|
||||
|
@ -550,6 +552,36 @@ questions:
|
|||
description: Automatically set permissions on install
|
||||
schema:
|
||||
show_if: [["type", "=", "hostPath"]]
|
||||
hidden: true
|
||||
type: boolean
|
||||
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
|
||||
|
@ -757,24 +789,25 @@ questions:
|
|||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: entrypoint
|
||||
label: (Advanced) Traefik Entrypoint
|
||||
description: Entrypoint used by Traefik when using Traefik as Ingress Provider
|
||||
schema:
|
||||
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
|
||||
|
@ -1172,6 +1205,7 @@ questions:
|
|||
- variable: gpu
|
||||
label: Select GPU
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
$ref:
|
||||
- "definitions/gpuConfiguration"
|
||||
|
@ -1759,6 +1793,7 @@ questions:
|
|||
- variable: openvpn
|
||||
label: OpenVPN Settings
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
show_if: [["type", "=", "openvpn"]]
|
||||
attrs:
|
||||
|
@ -1779,6 +1814,7 @@ questions:
|
|||
- variable: tailscale
|
||||
label: Tailscale Settings
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
show_if: [["type", "=", "tailscale"]]
|
||||
attrs:
|
|
@ -2,3 +2,4 @@ icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/mylar.png
|
|||
categories:
|
||||
- media
|
||||
|
||||
screenshots: []
|
||||
|
|
Loading…
Reference in New Issue