Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-12-02 13:50:44 +00:00
parent dad4e28dc7
commit 5c0247de76
50 changed files with 3284 additions and 55 deletions

View File

@ -4,6 +4,26 @@
## [splunk-4.1.0](https://github.com/truecharts/charts/compare/splunk-4.0.0...splunk-4.1.0) (2023-12-02)
### Chore
- fix annotations again
- update annotations
- cleanup chart.yaml and add min-max scale version
- Fix typo in categories and make them singular ([#13693](https://github.com/truecharts/charts/issues/13693))
### Feat
- Add HEC service ([#15353](https://github.com/truecharts/charts/issues/15353))
### Migrate
- Migrate to new common ([#15093](https://github.com/truecharts/charts/issues/15093))
@ -77,23 +97,3 @@
### Chore
- update helm general non-major ([#5839](https://github.com/truecharts/charts/issues/5839))
## [splunk-3.0.4](https://github.com/truecharts/charts/compare/splunk-3.0.3...splunk-3.0.4) (2022-12-25)
### Chore
- update helm general non-major
## [splunk-3.0.3](https://github.com/truecharts/charts/compare/splunk-3.0.2...splunk-3.0.3) (2022-12-21)
### Chore
- update container image splunk/splunk to v9.0.3

View File

@ -1,7 +1,7 @@
kubeVersion: ">=1.24.0"
apiVersion: v2
name: splunk
version: 4.0.0
version: 4.1.0
appVersion: 9.1.2
description:
This is a Chartfile for Splunk designed for OpenShift and TrueNAS based
@ -13,6 +13,7 @@ sources:
- https://splunk.github.io/docker-splunk
- https://github.com/truecharts/charts/tree/master/charts/incubator/splunk
- https://hub.docker.com/r/splunk/splunk
type: application
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@ -0,0 +1,20 @@
## [splunk-4.1.0](https://github.com/truecharts/charts/compare/splunk-4.0.0...splunk-4.1.0) (2023-12-02)
### Chore
- fix annotations again
- update annotations
- cleanup chart.yaml and add min-max scale version
- Fix typo in categories and make them singular ([#13693](https://github.com/truecharts/charts/issues/13693))
### Feat
- Add HEC service ([#15353](https://github.com/truecharts/charts/issues/15353))
### Migrate
- Migrate to new common ([#15093](https://github.com/truecharts/charts/issues/15093))

View File

@ -30,6 +30,14 @@ service:
port: 8000
protocol: http
targetPort: 8000
hec:
enabled: true
ports:
hec:
enabled: true
port: 8088
protocol: http
targetPort: 8088
management:
enabled: true
ports:

View File

@ -316,6 +316,56 @@ questions:
type: int
default: 8000
required: true
- variable: hec
label: HTTP Event Collector service
description: The service for the Splunk HTTP Event Collector (HEC)
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: Enable the Service
schema:
type: boolean
default: true
hidden: true
- variable: type
label: Service Type
description: "ClusterIP's are only internally available and Loadbalancer exposes the service using the system loadbalancer"
schema:
type: string
default: LoadBalancer
enum:
- value: LoadBalancer
description: LoadBalancer (Expose Ports)
- value: ClusterIP
description: ClusterIP (Do Not Expose Ports)
- variable: loadBalancerIP
label: LoadBalancer IP
description: "MetalLB Only: Selects the Loadbalancer IP to expose on. Required when using PortalButton with MetalLB"
schema:
show_if: [["type", "=", "LoadBalancer"]]
type: string
default: ""
- variable: ports
label: "Service's Port(s) Configuration"
schema:
additional_attrs: true
type: dict
attrs:
- variable: hec
label: HTTP Event Collector Service Port Configuration
schema:
additional_attrs: true
type: dict
attrs:
- variable: port
label: Port
description: This port exposes the container port on the service
schema:
type: int
default: 8088
required: true
- variable: management
label: management service
description: HTTPS API

View File

@ -4,6 +4,21 @@
## [recyclarr-6.0.18](https://github.com/truecharts/charts/compare/recyclarr-6.0.17...recyclarr-6.0.18) (2023-12-02)
### Chore
- fix annotations again
- update annotations
- cleanup chart.yaml and add min-max scale version
### Fix
- Add missing chart config options ([#15295](https://github.com/truecharts/charts/issues/15295))
@ -82,18 +97,3 @@
## [recyclarr-6.0.9](https://github.com/truecharts/charts/compare/recyclarr-6.0.8...recyclarr-6.0.9) (2023-10-03)
### Chore
- update container image tccr.io/truecharts/recyclarr to v6.0.1 ([#13193](https://github.com/truecharts/charts/issues/13193))
## [recyclarr-6.0.8](https://github.com/truecharts/charts/compare/recyclarr-6.0.7...recyclarr-6.0.8) (2023-09-30)
### Chore
- update container image tccr.io/truecharts/recyclarr to v6.0.0 ([#13100](https://github.com/truecharts/charts/issues/13100))

View File

@ -1,7 +1,7 @@
kubeVersion: ">=1.24.0"
apiVersion: v2
name: recyclarr
version: 6.0.17
version: 6.0.18
appVersion: 6.0.2
description:
A command-line application that will automatically synchronize recommended
@ -14,6 +14,7 @@ sources:
- https://github.com/recyclarr/recyclarr/pkgs/container/recyclarr
- https://github.com/truecharts/charts/tree/master/charts/stable/recyclarr
- https://ghcr.io/recyclarr/recyclarr
type: application
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@ -0,0 +1,15 @@
## [recyclarr-6.0.18](https://github.com/truecharts/charts/compare/recyclarr-6.0.17...recyclarr-6.0.18) (2023-12-02)
### Chore
- fix annotations again
- update annotations
- cleanup chart.yaml and add min-max scale version
### Fix
- Add missing chart config options ([#15295](https://github.com/truecharts/charts/issues/15295))

View File

@ -108,6 +108,63 @@ questions:
schema:
type: string
default: "@daily"
- variable: envList
label: Extra Environment Variables
description: "Please be aware that some variables are set in the background, adding duplicates here might cause issues or prevent the app from starting..."
schema:
type: list
default: []
items:
- variable: envItem
label: Environment Variable
schema:
additional_attrs: true
type: dict
attrs:
- variable: name
label: Name
schema:
type: string
- variable: value
label: Value
schema:
type: string
- variable: extraArgs
label: Extra Args
schema:
type: list
default: []
items:
- variable: arg
label: Arg
schema:
type: string
- 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: command
label: Command
schema:
type: list
default: []
items:
- variable: param
label: Param
schema:
type: string
- variable: TZ
label: Timezone
group: "General Settings"
schema:
type: string
default: "Etc/UTC"
$ref:
- "definitions/timezone"
- variable: podOptions
group: "General Settings"
label: "Global Pod Options (Advanced)"

View File

@ -0,0 +1,99 @@
**Important:**
*for the complete changelog, please refer to the website*
## [romm-3.0.0](https://github.com/truecharts/charts/compare/romm-2.0.13...romm-3.0.0) (2023-12-02)
### Chore
- fix annotations again
- update annotations
- cleanup chart.yaml and add min-max scale version
## [romm-2.0.13](https://github.com/truecharts/charts/compare/romm-2.0.12...romm-2.0.13) (2023-11-17)
## [romm-2.0.12](https://github.com/truecharts/charts/compare/romm-2.0.11...romm-2.0.12) (2023-11-08)
### Chore
- update helm general non-major ([#14465](https://github.com/truecharts/charts/issues/14465))
## [romm-2.0.11](https://github.com/truecharts/charts/compare/romm-2.0.10...romm-2.0.11) (2023-11-08)
### Chore
- update helm general non-major ([#14454](https://github.com/truecharts/charts/issues/14454))
## [romm-2.0.10](https://github.com/truecharts/charts/compare/romm-2.0.9...romm-2.0.10) (2023-11-05)
### Chore
- update helm general non-major ([#14365](https://github.com/truecharts/charts/issues/14365))
## [romm-2.0.9](https://github.com/truecharts/charts/compare/romm-2.0.8...romm-2.0.9) (2023-11-03)
### Chore
- update helm general non-major ([#14287](https://github.com/truecharts/charts/issues/14287))
## [romm-2.0.8](https://github.com/truecharts/charts/compare/romm-2.0.7...romm-2.0.8) (2023-10-29)
### Chore
- update helm general non-major ([#14094](https://github.com/truecharts/charts/issues/14094))
## [romm-2.0.7](https://github.com/truecharts/charts/compare/romm-2.0.5...romm-2.0.7) (2023-10-28)
### Chore
- Fix typo in categories and make them singular ([#13693](https://github.com/truecharts/charts/issues/13693))
## [romm-2.0.5](https://github.com/truecharts/charts/compare/romm-2.0.4...romm-2.0.5) (2023-10-07)
### Chore
- update helm general non-major ([#13386](https://github.com/truecharts/charts/issues/13386))
## [romm-2.0.4](https://github.com/truecharts/charts/compare/romm-2.0.3...romm-2.0.4) (2023-08-30)
## [romm-2.0.3](https://github.com/truecharts/charts/compare/romm-2.0.2...romm-2.0.3) (2023-08-29)

View File

@ -0,0 +1,51 @@
kubeVersion: ">=1.24.0"
apiVersion: v2
name: romm
version: 3.0.0
appVersion: "2.1.0"
description: game library manager focused in retro gaming
home: https://truecharts.org/charts/stable/romm
icon: https://truecharts.org/img/hotlink-ok/chart-icons/romm.png
deprecated: false
sources:
- https://github.com/zurdi15/romm
- https://github.com/truecharts/charts/tree/master/charts/stable/romm
- https://ghcr.io/zurdi15/romm
type: application
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- romm
- rom-manager
dependencies:
- name: common
version: 14.3.5
repository: https://library-charts.truecharts.org
condition: ""
alias: ""
tags: []
import-values: []
- name: mariadb
version: 7.0.70
repository: https://deps.truecharts.org/
condition: mariadb.enabled
alias: ""
tags: []
import-values: []
- name: redis
version: 7.0.6
repository: https://deps.truecharts.org
condition: redis.enabled
alias: ""
tags: []
import-values: []
annotations:
max_scale_version: 23.10.1
min_scale_version: 22.12.4
truecharts.org/SCALE-support: "true"
truecharts.org/category: media
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable

View File

@ -0,0 +1,11 @@
## [romm-3.0.0](https://github.com/truecharts/charts/compare/romm-2.0.13...romm-3.0.0) (2023-12-02)
### Chore
- fix annotations again
- update annotations
- cleanup chart.yaml and add min-max scale version

View File

@ -0,0 +1,8 @@
game library manager focused in retro gaming
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/romm](https://truecharts.org/charts/stable/romm)
---
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.

Binary file not shown.

View File

@ -0,0 +1,100 @@
image:
repository: ghcr.io/zurdi15/romm
pullPolicy: IfNotPresent
tag: 2.1.0@sha256:5403e58d0ec714a1aa45c5caf9c897b4eb7fecb403c3041468a707bce4f6bd3b
securityContext:
container:
readOnlyRootFilesystem: false
runAsNonRoot: false
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
protocol: http
targetPort: 80
port: 10680
romm:
auth:
user: "admin"
pass: "admin"
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
type: http
readiness:
type: http
startup:
type: http
env:
ROMM_BASE_PATH: /romm
ROMM_DB_DRIVER: mariadb
# IGDB client id
CLIENT_ID: ""
# IGDB client secret
CLIENT_SECRET: ""
STEAMGRIDDB_API_KEY: ""
DB_PORT: 3306
DB_NAME: "{{ .Values.mariadb.mariadbDatabase }}"
DB_USER: "{{ .Values.mariadb.mariadbUsername }}"
DB_HOST:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}'
key: plainhost
DB_PASSWD:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}'
key: mariadb-password
REDIS_HOST:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
key: plainhost
REDIS_PASSWORD:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
key: redis-password
REDIS_PORT: 6379
ROMM_AUTH_SECRET_KEY:
secretKeyRef:
name: romm-secrets
key: ROMM_AUTH_SECRET_KEY
ROMM_AUTH_ENABLED: true
ENABLE_EXPERIMENTAL_REDIS: true
ROMM_AUTH_USERNAME: "{{ .Values.romm.auth.user}}"
ROMM_AUTH_PASSWORD: "{{ .Values.romm.auth.pass}}"
persistence:
library:
enabled: true
mountPath: /romm/library
resources:
enabled: true
mountPath: /romm/resources
logs:
enabled: true
mountPath: /romm/logs
mariadb:
enabled: true
mariadbUsername: romm
mariadbDatabase: romm
redis:
enabled: true
portal:
open:
enabled: true

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,13 @@
{{/* Define the secrets */}}
{{- define "romm.secrets" -}}
{{- $secretName := (printf "%s-romm-secrets" (include "tc.v1.common.lib.chart.names.fullname" $)) }}
{{- $authKey := randAlphaNum 64 -}}
{{- with lookup "v1" "Secret" .Release.Namespace $secretName -}}
{{- $authKey = index .data "ROMM_AUTH_SECRET_KEY" | b64dec -}}
{{- end }}
enabled: true
data:
ROMM_AUTH_SECRET_KEY: {{ $authKey }}
{{- end -}}

View File

@ -0,0 +1,11 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.v1.common.loader.init" . -}}
{{/* Render secrets for romm */}}
{{- $secrets := include "romm.secrets" . | fromYaml -}}
{{- if $secrets -}}
{{- $_ := set .Values.secret "romm-secrets" $secrets -}}
{{- end -}}
{{/* Render the templates */}}
{{- include "tc.v1.common.loader.apply" . -}}

View File

@ -4,6 +4,21 @@
## [wizarr-3.0.12](https://github.com/truecharts/charts/compare/wizarr-3.0.11...wizarr-3.0.12) (2023-12-02)
### Chore
- fix annotations again
- update annotations
- cleanup chart.yaml and add min-max scale version
### Fix
- Fix upstream missing release ([#15443](https://github.com/truecharts/charts/issues/15443))
@ -82,18 +97,3 @@
## [wizarr-3.0.2](https://github.com/truecharts/charts/compare/wizarr-3.0.1...wizarr-3.0.2) (2023-10-08)
### Chore
- update container image tccr.io/truecharts/wizarr to v3.4.1 ([#12116](https://github.com/truecharts/charts/issues/12116))
## [wizarr-3.0.1](https://github.com/truecharts/charts/compare/wizarr-3.0.0...wizarr-3.0.1) (2023-10-07)
### Chore
- update helm general non-major ([#13386](https://github.com/truecharts/charts/issues/13386))

View File

@ -1,8 +1,8 @@
kubeVersion: ">=1.24.0"
apiVersion: v2
version: 3.0.12
appVersion: 3.5.1
name: wizarr
version: 3.0.11
appVersion: 3.5.2
description: A automatic user invitation system for Plex.
home: https://truecharts.org/charts/stable/wizarr
icon: https://truecharts.org/img/hotlink-ok/chart-icons/wizarr.png
@ -11,6 +11,7 @@ sources:
- https://github.com/Wizarrrr/wizarr
- https://github.com/truecharts/charts/tree/master/charts/stable/wizarr
- https://ghcr.io/wizarrrr/wizarr
type: application
maintainers:
- name: TrueCharts
email: info@truecharts.org

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/guides/scale-intro).
- 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,15 @@
## [wizarr-3.0.12](https://github.com/truecharts/charts/compare/wizarr-3.0.11...wizarr-3.0.12) (2023-12-02)
### Chore
- fix annotations again
- update annotations
- cleanup chart.yaml and add min-max scale version
### Fix
- Fix upstream missing release ([#15443](https://github.com/truecharts/charts/issues/15443))

Binary file not shown.

View File

@ -1,7 +1,7 @@
image:
repository: ghcr.io/wizarrrr/wizarr
pullPolicy: IfNotPresent
tag: 3.5.2@sha256:cffdf26745db2a4d3f215ae38deef387625842a431882fd8f2c9c18033b06398
tag: 3.5.1@sha256:660b309f8a8c298910cb8f0e1ba13b980d8b30df6d836e78c5e0f3d0713cc352
service:
main:
ports:

View File

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