Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-05-29 13:00:34 +00:00
parent 790fc42719
commit c4ef66a619
23 changed files with 2343 additions and 82 deletions

View File

@ -1,9 +0,0 @@
## [octoprint-9.0.18](https://github.com/truecharts/charts/compare/octoprint-9.0.17...octoprint-9.0.18) (2023-05-27)
### Chore
- update helm general non-major ([#9197](https://github.com/truecharts/charts/issues/9197))

View File

@ -4,6 +4,19 @@
## [octoprint-9.0.19](https://github.com/truecharts/charts/compare/octoprint-9.0.18...octoprint-9.0.19) (2023-05-29)
### Chore
- update container image tccr.io/truecharts/octoprint to v1.9.0 ([#9275](https://github.com/truecharts/charts/issues/9275))
### Feat
- hide advanced ingress options behind checbox ([#9203](https://github.com/truecharts/charts/issues/9203))
## [octoprint-9.0.18](https://github.com/truecharts/charts/compare/octoprint-9.0.17...octoprint-9.0.18) (2023-05-27) ## [octoprint-9.0.18](https://github.com/truecharts/charts/compare/octoprint-9.0.17...octoprint-9.0.18) (2023-05-27)
### Chore ### Chore
@ -84,16 +97,3 @@
## [octoprint-9.0.9](https://github.com/truecharts/charts/compare/octoprint-9.0.8...octoprint-9.0.9) (2023-04-25)
### Chore
- update helm general non-major ([#8153](https://github.com/truecharts/charts/issues/8153))
## [octoprint-9.0.8](https://github.com/truecharts/charts/compare/octoprint-9.0.7...octoprint-9.0.8) (2023-04-25)
### Chore

View File

@ -1,5 +1,5 @@
apiVersion: v2 apiVersion: v2
appVersion: "1.8.7" appVersion: "1.9.0"
dependencies: dependencies:
- name: common - name: common
repository: https://library-charts.truecharts.org repository: https://library-charts.truecharts.org
@ -20,7 +20,7 @@ name: octoprint
sources: sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/octoprint - https://github.com/truecharts/charts/tree/master/charts/stable/octoprint
- https://github.com/OctoPrint/OctoPrint - https://github.com/OctoPrint/OctoPrint
version: 9.0.18 version: 9.0.19
annotations: annotations:
truecharts.org/catagories: | truecharts.org/catagories: |
- media - media

View File

@ -0,0 +1,13 @@
## [octoprint-9.0.19](https://github.com/truecharts/charts/compare/octoprint-9.0.18...octoprint-9.0.19) (2023-05-29)
### Chore
- update container image tccr.io/truecharts/octoprint to v1.9.0 ([#9275](https://github.com/truecharts/charts/issues/9275))
### Feat
- hide advanced ingress options behind checbox ([#9203](https://github.com/truecharts/charts/issues/9203))

View File

@ -1,6 +1,6 @@
image: image:
repository: tccr.io/truecharts/octoprint repository: tccr.io/truecharts/octoprint
tag: 1.8.7@sha256:fb8ad50f23c243072320b40cfb41cbaf83e91128f2ff1ee03f9b518b9d1c5a93 tag: v1.9.0@sha256:59a0a6f712b80f76fd7722e05f6375de4148338e79bd1c0aba0d691fdcdb2991
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
service: service:
main: main:

View File

@ -763,63 +763,6 @@ questions:
schema: schema:
type: string type: string
default: "" default: ""
- variable: tls
label: TLS-Settings
schema:
type: list
show_if: [["certificateIssuer", "=", ""]]
default: []
items:
- variable: tlsEntry
label: Host
schema:
additional_attrs: true
type: dict
attrs:
- variable: hosts
label: Certificate Hosts
schema:
type: list
default: []
items:
- variable: host
label: Host
schema:
type: string
default: ""
required: true
- variable: certificateIssuer
label: Use Cert-Manager clusterIssuer
description: 'add the name of your cert-manager clusterIssuer here for automatic tls certificates.'
schema:
type: string
default: ""
- variable: scaleCert
label: Use TrueNAS SCALE Certificate (Deprecated)
schema:
show_if: [["certificateIssuer", "=", ""]]
type: int
$ref:
- "definitions/certificate"
- variable: secretName
label: Use Custom Secret (Advanced)
schema:
show_if: [["certificateIssuer", "=", ""]]
type: string
default: ""
- variable: entrypoint
label: (Advanced) Traefik Entrypoint
description: Entrypoint used by Traefik when using Traefik as Ingress Provider
schema:
type: string
default: websecure
required: true
- variable: ingressClassName
label: (Advanced/Optional) IngressClass Name
schema:
type: string
default: ""
- variable: middlewares - variable: middlewares
label: Traefik Middlewares label: Traefik Middlewares
description: Add previously created Traefik Middlewares to this Ingress description: Add previously created Traefik Middlewares to this Ingress
@ -833,6 +776,70 @@ questions:
type: string type: string
default: "" default: ""
required: true required: true
- variable: advanced
label: Show Advanced Settings
description: Advanced settings are not covered by TrueCharts Support
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
required: true
- variable: ingressClassName
label: (Advanced/Optional) IngressClass Name
schema:
type: string
default: ""
- variable: tls
label: TLS-Settings
schema:
type: list
default: []
items:
- variable: tlsEntry
label: Host
schema:
additional_attrs: true
type: dict
attrs:
- variable: hosts
label: Certificate Hosts
schema:
type: list
default: []
items:
- variable: host
label: Host
schema:
type: string
default: ""
required: true
- variable: certificateIssuer
label: Use Cert-Manager clusterIssuer
description: 'add the name of your cert-manager clusterIssuer here for automatic tls certificates.'
schema:
type: string
default: ""
- variable: scaleCert
label: Use TrueNAS SCALE Certificate (Deprecated)
schema:
show_if: [["certificateIssuer", "=", ""]]
type: int
$ref:
- "definitions/certificate"
- variable: secretName
label: Use Custom Secret (Advanced)
schema:
show_if: [["certificateIssuer", "=", ""]]
type: string
default: ""
- variable: ingressList - variable: ingressList
label: Add Manual Custom Ingresses label: Add Manual Custom Ingresses
group: Ingress group: Ingress

View File

@ -0,0 +1,99 @@
**Important:**
*for the complete changelog, please refer to the website*
## [zwavejs2mqtt-15.0.20](https://github.com/truecharts/charts/compare/zwavejs2mqtt-15.0.19...zwavejs2mqtt-15.0.20) (2023-05-29)
### Chore
- update container image tccr.io/truecharts/zwavejs-ui to v8.17.1 ([#9281](https://github.com/truecharts/charts/issues/9281))
### Feat
- hide advanced ingress options behind checbox ([#9203](https://github.com/truecharts/charts/issues/9203))
## [zwavejs2mqtt-15.0.19](https://github.com/truecharts/charts/compare/zwavejs2mqtt-15.0.18...zwavejs2mqtt-15.0.19) (2023-05-27)
### Chore
- update helm general non-major ([#9197](https://github.com/truecharts/charts/issues/9197))
## [zwavejs2mqtt-15.0.18](https://github.com/truecharts/charts/compare/zwavejs2mqtt-15.0.17...zwavejs2mqtt-15.0.18) (2023-05-26)
### Chore
- update helm general non-major ([#9156](https://github.com/truecharts/charts/issues/9156))
## [zwavejs2mqtt-15.0.17](https://github.com/truecharts/charts/compare/zwavejs2mqtt-15.0.16...zwavejs2mqtt-15.0.17) (2023-05-24)
### Chore
- update helm general non-major ([#9125](https://github.com/truecharts/charts/issues/9125))
## [zwavejs2mqtt-15.0.16](https://github.com/truecharts/charts/compare/zwavejs2mqtt-15.0.15...zwavejs2mqtt-15.0.16) (2023-05-22)
### Chore
- update helm general non-major ([#9089](https://github.com/truecharts/charts/issues/9089))
## [zwavejs2mqtt-15.0.15](https://github.com/truecharts/charts/compare/zwavejs2mqtt-15.0.14...zwavejs2mqtt-15.0.15) (2023-05-22)
### Feat
- Add Global Pod Options ([#9007](https://github.com/truecharts/charts/issues/9007))
## [zwavejs2mqtt-15.0.14](https://github.com/truecharts/charts/compare/zwavejs2mqtt-15.0.13...zwavejs2mqtt-15.0.14) (2023-05-16)
### Chore
- update helm general non-major ([#8979](https://github.com/truecharts/charts/issues/8979))
## [zwavejs2mqtt-15.0.13](https://github.com/truecharts/charts/compare/zwavejs2mqtt-15.0.12...zwavejs2mqtt-15.0.13) (2023-05-08)
### Chore
- update container image tccr.io/truecharts/zwavejs-ui to v8.15.0 ([#8866](https://github.com/truecharts/charts/issues/8866))
## [zwavejs2mqtt-15.0.12](https://github.com/truecharts/charts/compare/zwavejs2mqtt-15.0.11...zwavejs2mqtt-15.0.12) (2023-05-05)
### Chore
- update helm general non-major ([#8782](https://github.com/truecharts/charts/issues/8782))
## [zwavejs2mqtt-15.0.11](https://github.com/truecharts/charts/compare/zwavejs2mqtt-15.0.10...zwavejs2mqtt-15.0.11) (2023-05-03)
### Chore
- update helm general non-major ([#8739](https://github.com/truecharts/charts/issues/8739))

View File

@ -0,0 +1,30 @@
apiVersion: v2
appVersion: "8.17.1"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 12.10.4
deprecated: false
description: Fully configurable Zwave to MQTT gateway and Control Panel using NodeJS and Vue
home: https://truecharts.org/charts/stable/zwavejs2mqtt
icon: https://truecharts.org/img/hotlink-ok/chart-icons/zwavejs2mqtt.png
keywords:
- zwavejs2mqtt
- zwave-js
- z-wave
- zwave
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: zwavejs2mqtt
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/zwavejs2mqtt
- https://github.com/zwave-js/zwavejs2mqtt
type: application
version: 15.0.20
annotations:
truecharts.org/catagories: |
- tools
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,27 @@
# README
## General Info
TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE.
However only installations using the TrueNAS SCALE Apps system are supported.
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/stable/)
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**
## Support
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE%20Apps/Important-MUST-READ).
- See the [Website](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
---
## Sponsor TrueCharts
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
*All Rights Reserved - The TrueCharts Project*

View File

@ -0,0 +1,13 @@
## [zwavejs2mqtt-15.0.20](https://github.com/truecharts/charts/compare/zwavejs2mqtt-15.0.19...zwavejs2mqtt-15.0.20) (2023-05-29)
### Chore
- update container image tccr.io/truecharts/zwavejs-ui to v8.17.1 ([#9281](https://github.com/truecharts/charts/issues/9281))
### Feat
- hide advanced ingress options behind checbox ([#9203](https://github.com/truecharts/charts/issues/9203))

View File

@ -0,0 +1,8 @@
Fully configurable Zwave to MQTT gateway and Control Panel using NodeJS and Vue
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/zwavejs2mqtt](https://truecharts.org/charts/stable/zwavejs2mqtt)
---
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!

Binary file not shown.

View File

@ -0,0 +1,85 @@
image:
repository: tccr.io/truecharts/zwavejs-ui
pullPolicy: IfNotPresent
tag: v8.17.1@sha256:b2a8f6db90cf834e86cf06e0343d08bdb175b9716f290dd7c7791be0ead7a354
service:
main:
ports:
main:
port: 8091
targetPort: 8091
ws:
enabled: true
ports:
ws:
enabled: true
port: 10046
targetPort: 3000
persistence:
config:
enabled: true
mountPath: "/usr/src/app/store"
# affinity:
# nodeAffinity:
# requiredDuringSchedulingIgnoredDuringExecution:
# nodeSelectorTerms:
# - matchExpressions:
# - key: app
# operator: In
# values:
# - zwave-controller
portal:
open:
enabled: true
securityContext:
container:
readOnlyRootFilesystem: false
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
enabled: true
# custom: true
# spec:
# failureThreshold: 5
# httpGet:
# path: /health
# port: http
# httpHeaders:
# - name: Accept
# value: text/plain
# initialDelaySeconds: 30
# periodSeconds: 10
# timeoutSeconds: 10
readiness:
enabled: true
# custom: true
# spec:
# failureThreshold: 5
# httpGet:
# path: /health
# port: http
# httpHeaders:
# - name: Accept
# value: text/plain
# initialDelaySeconds: 30
# periodSeconds: 10
# timeoutSeconds: 10
startup:
enabled: false
# custom: true
# spec:
# failureThreshold: 5
# httpGet:
# path: /health
# port: http
# httpHeaders:
# - name: Accept
# value: text/plain
# initialDelaySeconds: 30
# periodSeconds: 10
# timeoutSeconds: 10

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
{{- include "tc.v1.common.lib.chart.notes" $ -}}

View File

@ -0,0 +1 @@
{{ include "tc.v1.common.loader.all" . }}

View File