Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-06-10 19:34:39 +00:00
parent 9c0738b777
commit 72797fb11d
12 changed files with 2401 additions and 0 deletions

View File

@ -0,0 +1,13 @@
**Important:**
*for the complete changelog, please refer to the website*
## [mosquitto-10.0.1](https://github.com/truecharts/charts/compare/mosquitto-10.0.0...mosquitto-10.0.1) (2023-06-10)
### Feat
- Move to stable ([#9567](https://github.com/truecharts/charts/issues/9567))

View File

@ -0,0 +1,30 @@
apiVersion: v2
appVersion: "2.0.15"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 12.10.4
deprecated: false
description: Eclipse Mosquitto - An open source MQTT broker
home: https://truecharts.org/charts/stable/mosquitto
icon: https://truecharts.org/img/hotlink-ok/chart-icons/mosquitto.png
keywords:
- mosquitto
- MQTT
- eclipse-iot
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: mosquitto
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/mosquitto
- https://github.com/eclipse/mosquitto
type: application
version: 10.0.1
annotations:
truecharts.org/catagories: |
- homeautomation
truecharts.org/SCALE-support: "true"
truecharts.org/grade: U

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/incubator/)
**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,9 @@
## [mosquitto-10.0.1](https://github.com/truecharts/charts/compare/mosquitto-10.0.0...mosquitto-10.0.1) (2023-06-10)
### Feat
- Move to stable ([#9567](https://github.com/truecharts/charts/issues/9567))

View File

@ -0,0 +1,8 @@
Eclipse Mosquitto - An open source MQTT broker
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/mosquitto](https://truecharts.org/charts/stable/mosquitto)
---
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,91 @@
image:
repository: tccr.io/truecharts/eclipse-mosquitto
tag: 2.0.15@sha256:11a54ebec4076713709383110099f27aab8f7b16f01f680fb117e8efe028dd06
pullPolicy: IfNotPresent
service:
main:
ports:
main:
port: 1883
targetPort: 1883
websockets:
enabled: true
ports:
websockets:
enabled: true
port: 9001
targetPort: 9001
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
enabled: true
type: tcp
port: 1883
readiness:
enabled: true
type: tcp
port: 1883
startup:
enabled: true
type: tcp
port: 1883
ingress:
websockets:
autoLink: true
auth:
# -- By enabling this, `allow_anonymous` gets set to `false` in the mosquitto config.
enabled: false
websockets:
# -- By enabling this, an additional listener with protocol websockets is added in the mosquitto config.
enabled: false
configmap:
config:
enabled: true
data:
mosquitto.conf: |
listener {{ .Values.service.main.ports.main.targetPort }}
{{- if .Values.websockets.enabled }}
listener {{ .Values.service.websockets.ports.websockets.targetPort }}
protocol websockets
{{- end }}
{{- if .Values.auth.enabled }}
allow_anonymous false
{{- else }}
allow_anonymous true
{{- end }}
{{- if .Values.persistence.data.enabled }}
persistence true
persistence_location {{ .Values.persistence.data.mountPath }}
autosave_interval 1800
{{- end }}
{{- if .Values.persistence.configinc.enabled }}
include_dir {{ .Values.persistence.configinc.mountPath }}
{{- end }}
persistence:
data:
enabled: true
mountPath: "/mosquitto/data"
configinc:
enabled: true
mountPath: "/mosquitto/configinc"
mosquitto-config:
enabled: true
mountPath: "/mosquitto/config/mosquitto.conf"
subPath: "mosquitto.conf"
type: configmap
objectName: config
portal:
open:
enabled: false

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,5 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.v1.common.loader.init" . }}
{{/* Render the templates */}}
{{ include "tc.v1.common.loader.apply" . }}

View File

View File

@ -0,0 +1,4 @@
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/mosquitto.png
categories:
- homeautomation