Compare commits

..

5 Commits

190 changed files with 274 additions and 198 deletions

View File

@@ -24,7 +24,7 @@ keywords:
- database
- clickhouse
- sql
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -24,7 +24,7 @@ keywords:
- prometheus
- kube-state-metrics
- monitoring
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -25,7 +25,7 @@ keywords:
- mysql
- database
- sql
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -24,7 +24,7 @@ keywords:
- memcached
- database
- cache
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -24,7 +24,7 @@ keywords:
- mongodb
- database
- nosql
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -24,7 +24,7 @@ keywords:
- prometheus
- node-exporter
- monitoring
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -24,7 +24,7 @@ keywords:
- redis
- keyvalue
- database
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -24,7 +24,7 @@ keywords:
- solr
- apache
- search
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/clusterissuer.png
keywords:
- cert-manager
- certificates
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -25,7 +25,7 @@ keywords:
- monitoring
- metrics
- logs
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -30,7 +30,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/kubeapps.png
keywords:
- kubeapps
- catalog
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -46,16 +46,16 @@ workload:
service:
## TODO: Enable
main:
enabled: false
primary: true
expandObjectName: false
ports:
main:
## TODO: Enable
enabled: false
primary: true
port: 3000
targetPort: 3000
enabled: false
primary: true
expandObjectName: false
ports:
main:
## TODO: Enable
enabled: false
primary: true
port: 3000
targetPort: 3000
tckubeapps:
enabled: true
expandObjectName: false

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/metallb-config.png
keywords:
- metallb
- loadbalancer
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -33,7 +33,7 @@ keywords:
- http
- web
- php
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -8,4 +8,4 @@ config.php should be considered non-user alterable. Users should write custom co
Custom user config files are, however, not covered by our support either.
Users are expected to know how to troubleshoot database issues with Nextcloud.
If you need support for Nextcloud itself, please consider a support contract from Nextcloud or a hosted Nextcloud instance instead.
If you need support for Nextcloud itself, please consider a support contract from Nextcloud or a hosted Nextcloud instance instead.

View File

@@ -36,7 +36,7 @@ home: https://truecharts.org/charts/enterprise/prometheus
icon: https://truecharts.org/img/hotlink-ok/chart-icons/prometheus.png
keywords:
- metrics
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/traefik.png
keywords:
- traefik
- ingress
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -198,6 +198,7 @@ questions:
# Include{geoBlockMiddleware}
# Include{addPrefixMiddleware}
# Include{modsecurityMiddleware}
# Include{errorsMiddleware}
- variable: service
group: "Networking and Services"
label: "Configure Service Entrypoint"

View File

@@ -0,0 +1,26 @@
{{- range $index, $middlewareData := .Values.middlewares.errors }}
---
apiVersion: traefik.io/v1alpha1
kind: Middleware
metadata:
name: {{ ternary (printf "%v-%v" $.Release.Name $middlewareData.name) $middlewareData.name $.Values.ingressClass.enabled }}
namespace: {{ $.Release.Namespace }}
spec:
errors:
{{- with $middlewareData.statusCode }}
status:
{{- toYaml . | nindent 6 }}
{{- end -}}
{{- with $middlewareData.query }}
query: {{ $middlewareData.query }}
{{- end -}}
{{- with $middlewareData.serviceName }}
service:
name: {{ $middlewareData.serviceName }}
{{- with $middlewareData.servicePort }}
port: {{ . }}
{{- else }}
port: 80
{{- end -}}
{{- end -}}
{{- end -}}

View File

@@ -306,6 +306,12 @@ serviceAccount:
primary: true
# -- SCALE Middleware Handlers
middlewares:
errors: []
# - name: errorsName
# statusCode: "400-599"
# query: "/{status}.html"
# serviceName: "whoami"
# servicePort: 80
basicAuth: []
# - name: basicauthexample
# users:

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/anything-llm.png
keywords:
- anything-llm
- ai
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/atuin.png
keywords:
- atuin
- shell
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -1 +1 @@
# Changelog
# Changelog

View File

@@ -1 +1 @@
# README
# README

View File

@@ -86,4 +86,4 @@ metricsEndpoint: "/metrics"
logs:
general:
level: info
format: logfmt
format: logfmt

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/adminer.png
keywords:
- adminer
- Tools-Utilities
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -36,7 +36,7 @@ home: https://truecharts.org/charts/stable/anonaddy
icon: https://truecharts.org/img/hotlink-ok/chart-icons/anonaddy.png
keywords:
- anonaddy
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -22,7 +22,7 @@ home: https://truecharts.org/charts/stable/audiobookshelf
icon: https://truecharts.org/img/hotlink-ok/chart-icons/audiobookshelf.png
keywords:
- audiobookshelf
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/autobrr.png
keywords:
- autobrr
- torrent
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/autoscan.png
keywords:
- autoscan
- media
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -26,7 +26,7 @@ keywords:
- tracker
- parents
- parenting
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -27,7 +27,7 @@ keywords:
- subtitles
- usenet
- torrent
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -26,7 +26,7 @@ keywords:
- manager
- player
- beets
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/blender.png
keywords:
- blender
- Other
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -22,7 +22,7 @@ home: https://truecharts.org/charts/stable/boinc
icon: https://truecharts.org/img/hotlink-ok/chart-icons/boinc.png
keywords:
- boinc
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/booksonic-air.png
keywords:
- booksonic
- audiobook
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/budge.png
keywords:
- finance
- budge
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -24,7 +24,7 @@ keywords:
- calibre-web
- calibre
- ebook
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -22,7 +22,7 @@ home: https://truecharts.org/charts/stable/calibre
icon: https://truecharts.org/img/hotlink-ok/chart-icons/calibre.png
keywords:
- calibre
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/chronograf.png
keywords:
- chronograf
- Tools-System
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/clamav.png
keywords:
- clamav
- antivirus
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/cloudflared.png
keywords:
- cloudflared
- networking
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -24,7 +24,7 @@ keywords:
- cloudflareddns
- ddns
- cloudflare
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/collabora.png
keywords:
- office
- document
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -26,7 +26,7 @@ keywords:
- Cloud
- MediaApp-Books
- MediaServer-Books
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -22,7 +22,7 @@ home: https://truecharts.org/charts/stable/cyberchef
icon: https://truecharts.org/img/hotlink-ok/chart-icons/cyberchef.png
keywords:
- cyberchef
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -24,7 +24,7 @@ keywords:
- duplicates
- file management
- czkawka
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/ddns-go.png
keywords:
- ddns-go
- ddns
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -24,7 +24,7 @@ keywords:
- iDrac
- Dell
- fan-controller
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -22,7 +22,7 @@ home: https://truecharts.org/charts/stable/dillinger
icon: https://truecharts.org/img/hotlink-ok/chart-icons/dillinger.png
keywords:
- dillinger
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/dns-doh-companion.png
keywords:
- dns-doh-companion
- Network-DNS
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -22,7 +22,7 @@ home: https://truecharts.org/charts/stable/docker
icon: https://truecharts.org/img/hotlink-ok/chart-icons/docker.png
keywords:
- docker
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -22,7 +22,7 @@ home: https://truecharts.org/charts/stable/dokuwiki
icon: https://truecharts.org/img/hotlink-ok/chart-icons/dokuwiki.png
keywords:
- dokuwiki
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -24,7 +24,7 @@ keywords:
- doublecommander
- file
- manager
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -22,7 +22,7 @@ home: https://truecharts.org/charts/stable/drawio
icon: https://truecharts.org/img/hotlink-ok/chart-icons/drawio.png
keywords:
- drawio
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -22,7 +22,7 @@ home: https://truecharts.org/charts/stable/duckdns
icon: https://truecharts.org/img/hotlink-ok/chart-icons/duckdns.png
keywords:
- duckdns
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/duplicacy.png
keywords:
- duplicacy
- Backup
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -22,7 +22,7 @@ home: https://truecharts.org/charts/stable/emulatorjs
icon: https://truecharts.org/img/hotlink-ok/chart-icons/emulatorjs.png
keywords:
- emulatorjs
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -22,7 +22,7 @@ home: https://truecharts.org/charts/stable/esphome
icon: https://truecharts.org/img/hotlink-ok/chart-icons/esphome.png
keywords:
- esphome
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/factorio.png
keywords:
- factorio
- GameServers
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/filebot.png
keywords:
- media
- filebot
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -22,7 +22,7 @@ home: https://truecharts.org/charts/stable/fileflows
icon: https://truecharts.org/img/hotlink-ok/chart-icons/fileflows.png
keywords:
- fileflows
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -26,7 +26,7 @@ keywords:
- sftp
- ftps
- client
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -25,7 +25,7 @@ keywords:
- Productivity
- Tools-Utilities
- Network-Web
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/flaresolverr.png
keywords:
- flaresolverr
- proxy
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/flexget.png
keywords:
- flexget
- automation
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/flowise.png
keywords:
- flowise
- ai
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -22,7 +22,7 @@ home: https://truecharts.org/charts/stable/fluidd
icon: https://truecharts.org/img/hotlink-ok/chart-icons/fluidd.png
keywords:
- fluidd
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -22,7 +22,7 @@ home: https://truecharts.org/charts/stable/foldingathome
icon: https://truecharts.org/img/hotlink-ok/chart-icons/foldingathome.png
keywords:
- foldingathome
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/freshrss.png
keywords:
- freshrss
- rss
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -37,7 +37,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/friendica.png
keywords:
- friend
- social
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/gamevault-backend.png
keywords:
- gamevault-backend
- games
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -30,7 +30,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/ghostfolio.png
keywords:
- ghostfolio
- finance
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/glauth.png
keywords:
- glauth
- Security
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/go-playground.png
keywords:
- go-playground
- Tools-Utilities
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -24,7 +24,7 @@ keywords:
- gokapi
- cloud
- utilities
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/grafana-image-renderer.p
keywords:
- grafana-image-renderer
- Productivity
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -25,7 +25,7 @@ keywords:
- web
- platform
- file
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/grocy.png
keywords:
- grocy
- home-automation
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -33,7 +33,7 @@ keywords:
- Productivity
- Tools-Utilities
- Network-Other
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -24,7 +24,7 @@ keywords:
- cron
- monitoring
- alert
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -22,7 +22,7 @@ home: https://truecharts.org/charts/stable/heimdall
icon: https://truecharts.org/img/hotlink-ok/chart-icons/heimdall.png
keywords:
- heimdall
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -22,7 +22,7 @@ home: https://truecharts.org/charts/stable/homarr
icon: https://truecharts.org/img/hotlink-ok/chart-icons/homarr.png
keywords:
- dashboard
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -24,7 +24,7 @@ keywords:
- home-assistant
- home-automation
- hass
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -22,7 +22,7 @@ home: https://truecharts.org/charts/stable/homepage
icon: https://truecharts.org/img/hotlink-ok/chart-icons/homepage.png
keywords:
- homepage
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -37,7 +37,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/humhub.png
keywords:
- humhub
- Network-Web
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -25,7 +25,7 @@ keywords:
- Backup
- Cloud
- Downloaders
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -24,7 +24,7 @@ keywords:
- invidious
- youtube
- media
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -24,7 +24,7 @@ keywords:
- dvr
- ispy
- agent
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -24,7 +24,7 @@ keywords:
- jellyfin
- plex
- emby
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/kasm.png
keywords:
- kasm
- Other
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/kdenlive.png
keywords:
- kdenlive
- Other
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/lazylibrarian.png
keywords:
- lazylibrarian
- ebooks
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -31,7 +31,7 @@ keywords:
- libremdb
- media
- imdb
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/librespeed.png
keywords:
- librespeed
- speedtest
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -22,7 +22,7 @@ home: https://truecharts.org/charts/stable/littlelink
icon: https://truecharts.org/img/hotlink-ok/chart-icons/littlelink.png
keywords:
- littlelink
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -23,7 +23,7 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/local-ai.png
keywords:
- local-ai
- ai
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -25,7 +25,7 @@ keywords:
- squeezebox
- audio
- streaming
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -29,7 +29,7 @@ home: https://truecharts.org/charts/stable/matomo
icon: https://truecharts.org/img/hotlink-ok/chart-icons/matomo.png
keywords:
- analytics
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -27,7 +27,7 @@ keywords:
- manager
- tv
- shows
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org

Some files were not shown because too many files have changed in this diff Show More