Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot
2023-08-24 20:40:45 +00:00
parent f6de2cef9e
commit 5282073772
13 changed files with 2168 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
**Important:**
*for the complete changelog, please refer to the website*
## [jellystat-0.0.1]jellystat-0.0.1 (2023-08-24)

View File

@@ -0,0 +1,28 @@
apiVersion: v2
appVersion: "latest"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.0.1
deprecated: false
description: A free and open source Statistics App for Jellyfin.
home: https://truecharts.org/charts/incubator/jellystat
icon: https://truecharts.org/img/hotlink-ok/chart-icons/jellystat.png
keywords:
- jellystat
- jellyfin
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: jellystat
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/jellystat
- https://github.com/CyferShepard/Jellystat
type: application
version: 0.0.1
annotations:
truecharts.org/catagories: |
- statistics
truecharts.org/SCALE-support: "true"

View File

@@ -0,0 +1 @@
# README

View File

@@ -0,0 +1,4 @@
## [jellystat-0.0.1]jellystat-0.0.1 (2023-08-24)

View File

@@ -0,0 +1,8 @@
A free and open source Statistics App for Jellyfin.
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/jellystat](https://truecharts.org/charts/incubator/jellystat)
---
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,73 @@
image:
repository: tccr.io/truecharts/jellystat
pullPolicy: IfNotPresent
tag: vlatest@sha256:80949c980cf6c4da6e6b57630ff137df2db7ecc6a19f56e1517b7aec8533ab46
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
service:
main:
enabled: true
ports:
main:
enabled: true
protocol: http
port: 10681
targetPort: 3000
ws:
enabled: true
protocol: tcp
port: 10682
targetPort: 3004
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
path: "/"
readiness:
path: "/"
startup:
path: "/"
env:
# PORT variables do not work.
# PORT: "{{ .Values.service.main.ports.main.port }}"
# WS_PORT: "{{ .Values.service.main.ports.ws.port }}"
POSTGRES_USER: "{{ .Values.cnpg.main.user }}"
POSTGRES_PASSWORD:
secretKeyRef:
name: cnpg-main-user
key: password
POSTGRES_IP:
secretKeyRef:
name: cnpg-main-urls
key: host
POSTGRES_PORT: 5432
JWT_SECRET:
secretKeyRef:
name: jellystat-secrets
key: JWT_SECRET
persistence:
backup:
enabled: true
mountPath: "/app/backend/backup-data"
cnpg:
main:
enabled: true
# static name
user: jfstat
database: jfstat
portal:
open:
enabled: true

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,12 @@
{{/* Define the secrets */}}
{{- define "jellystat.secrets" -}}
{{- $secretName := (printf "%s-jellystat-secrets" (include "tc.v1.common.lib.chart.names.fullname" $)) }}
{{- $jwtSecret := randAlphaNum 32 -}}
{{- with lookup "v1" "Secret" .Release.Namespace $secretName -}}
{{- $jwtSecret = index .data "JWT_SECRET" | b64dec -}}
{{- end }}
enabled: true
data:
JWT_SECRET: {{ $jwtSecret }}
{{- end -}}

View File

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

View File

View File

@@ -0,0 +1,5 @@
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/jellystat.png
categories:
- statistics
screenshots: []