Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-06-23 04:38:19 +00:00
parent e2d9747851
commit 374db43156
13 changed files with 111 additions and 74 deletions

View File

@ -1,9 +0,0 @@
## [znc-5.0.26](https://github.com/truecharts/charts/compare/znc-5.0.25...znc-5.0.26) (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 @@
## [znc-5.0.27](https://github.com/truecharts/charts/compare/znc-5.0.26...znc-5.0.27) (2023-06-23)
### Chore
- update container image tccr.io/truecharts/znc to v1.8.2 ([#9844](https://github.com/truecharts/charts/issues/9844))
## [znc-5.0.26](https://github.com/truecharts/charts/compare/znc-5.0.25...znc-5.0.26) (2023-06-13) ## [znc-5.0.26](https://github.com/truecharts/charts/compare/znc-5.0.25...znc-5.0.26) (2023-06-13)
### Chore ### Chore
@ -88,12 +97,3 @@
- update helm general non-major ([#9156](https://github.com/truecharts/charts/issues/9156)) - update helm general non-major ([#9156](https://github.com/truecharts/charts/issues/9156))
## [znc-5.0.17](https://github.com/truecharts/charts/compare/znc-5.0.16...znc-5.0.17) (2023-05-24)
### Chore
- update helm general non-major ([#9125](https://github.com/truecharts/charts/issues/9125))

View File

@ -1,7 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: znc name: znc
version: 5.0.26 version: 5.0.27
appVersion: "1.8.2" appVersion: "1.8.2"
description: Znc is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels. description: Znc is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels.
type: application type: application

View File

@ -0,0 +1,9 @@
## [znc-5.0.27](https://github.com/truecharts/charts/compare/znc-5.0.26...znc-5.0.27) (2023-06-23)
### Chore
- update container image tccr.io/truecharts/znc to v1.8.2 ([#9844](https://github.com/truecharts/charts/issues/9844))

View File

@ -1,7 +1,7 @@
image: image:
repository: tccr.io/truecharts/znc repository: tccr.io/truecharts/znc
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v1.8.2@sha256:e531a97107ed0587aaf3cf128005dbab231535691d0325fa8e49296c109df06b tag: v1.8.2@sha256:0e909095b18cb7ce7178a2d5c7dcb776c32fe31305b7017ec379525c72904144
service: service:
main: main:
ports: ports:

View File

@ -304,6 +304,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"
@ -320,6 +321,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:
@ -550,8 +552,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:
@ -757,64 +789,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
@ -1172,6 +1205,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"
@ -1759,6 +1793,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:
@ -1779,6 +1814,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/znc.png
categories: categories:
- incubator - incubator
screenshots: []