Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-12-24 13:00:32 +00:00
parent 52e025469c
commit 0dec1d313f
11 changed files with 619 additions and 592 deletions

View File

@ -1,9 +0,0 @@
## [livestreamdvr-3.0.16](https://github.com/truecharts/charts/compare/livestreamdvr-3.0.15...livestreamdvr-3.0.16) (2023-12-23)
### Chore
- update helm general non-major by renovate ([#16373](https://github.com/truecharts/charts/issues/16373))

View File

@ -4,6 +4,11 @@
## [livestreamdvr-3.1.0](https://github.com/truecharts/charts/compare/livestreamdvr-3.0.16...livestreamdvr-3.1.0) (2023-12-24)
## [livestreamdvr-3.0.16](https://github.com/truecharts/charts/compare/livestreamdvr-3.0.15...livestreamdvr-3.0.16) (2023-12-23) ## [livestreamdvr-3.0.16](https://github.com/truecharts/charts/compare/livestreamdvr-3.0.15...livestreamdvr-3.0.16) (2023-12-23)
### Chore ### Chore

View File

@ -1,15 +1,15 @@
kubeVersion: ">=1.24.0-0" kubeVersion: ">=1.24.0-0"
apiVersion: v2 apiVersion: v2
name: livestreamdvr name: livestreamdvr
version: 3.0.16 version: 3.1.0
appVersion: master appVersion: master
description: An automatic twitch recorder. description: An automatic twitch recorder.
home: https://truecharts.org/charts/incubator/livestreamdvr home: https://truecharts.org/charts/stable/livestreamdvr
icon: https://truecharts.org/img/hotlink-ok/chart-icons/livestreamdvr.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/livestreamdvr.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/MrBrax/LiveStreamDVR - https://github.com/MrBrax/LiveStreamDVR
- https://github.com/truecharts/charts/tree/master/charts/incubator/livestreamdvr - https://github.com/truecharts/charts/tree/master/charts/stable/livestreamdvr
- https://hub.docker.com/r/mrbrax/twitchautomator - https://hub.docker.com/r/mrbrax/twitchautomator
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
@ -33,5 +33,5 @@ annotations:
truecharts.org/category: MediaApp-Video truecharts.org/category: MediaApp-Video
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: stable
type: application type: application

View File

@ -0,0 +1,4 @@
## [livestreamdvr-3.1.0](https://github.com/truecharts/charts/compare/livestreamdvr-3.0.16...livestreamdvr-3.1.0) (2023-12-24)

View File

@ -2,38 +2,47 @@ image:
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: mrbrax/twitchautomator repository: mrbrax/twitchautomator
tag: master@sha256:8a93df9a76735e3484639c103c2e7609f6a66e907dd18199fcf7ebd0f635626d tag: master@sha256:8a93df9a76735e3484639c103c2e7609f6a66e907dd18199fcf7ebd0f635626d
persistence:
config:
enabled: true
mountPath: /usr/local/share/twitchautomator/data/config
hostpath1:
enabled: true
mountPath: /usr/local/share/twitchautomator/data/storage
hostpath2:
enabled: true
mountPath: /usr/local/share/twitchautomator/data/cache
hostpath4:
enabled: true
mountPath: /usr/local/share/twitchautomator/data/logs
portal:
open:
enabled: true
securityContext: securityContext:
container: container:
readOnlyRootFilesystem: false readOnlyRootFilesystem: false
runAsGroup: 0 runAsGroup: 0
runAsUser: 0 runAsUser: 0
service: service:
main: main:
ports: ports:
main: main:
protocol: http
port: 8146 port: 8146
protocol: tcp
targetPort: 8080
workload: workload:
main: main:
podSpec: podSpec:
containers: containers:
main: main:
args:
- --port
- "{{ .Values.service.main.ports.main.port }}"
env: env:
TCD_ENABLE_FILES_API: "0" TCD_ENABLE_FILES_API: false
TCD_EXPOSE_LOGS_TO_PUBLIC: false
TCD_MIGRATE_OLD_VOD_JSON: false
persistence:
config:
enabled: true
mountPath: /usr/local/share/twitchautomator/data/config
cache:
enabled: true
mountPath: /usr/local/share/twitchautomator/data/cache
logs:
enabled: true
mountPath: /usr/local/share/twitchautomator/data/logs
storage:
enabled: true
mountPath: /usr/local/share/twitchautomator/data/storage
portal:
open:
enabled: true