Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-11-30 12:21:57 +00:00
parent 8251f19f65
commit f91fedee7d
197 changed files with 15035 additions and 4729 deletions

View File

@ -1,9 +0,0 @@
## [mongodb-9.0.0](https://github.com/truecharts/charts/compare/mongodb-8.0.47...mongodb-9.0.0) (2023-11-27)
### Chore
- update helm chart common to 15.3.1 ([#14604](https://github.com/truecharts/charts/issues/14604))

View File

@ -4,6 +4,15 @@
## [mongodb-9.0.1](https://github.com/truecharts/charts/compare/mongodb-9.0.0...mongodb-9.0.1) (2023-11-30)
### Chore
- update container image bitnami/mongodb to v7.0.4[@20d7c04](https://github.com/20d7c04) ([#15431](https://github.com/truecharts/charts/issues/15431))
## [mongodb-9.0.0](https://github.com/truecharts/charts/compare/mongodb-8.0.47...mongodb-9.0.0) (2023-11-27)
### Chore
@ -88,12 +97,3 @@
## [mongodb-8.0.39](https://github.com/truecharts/charts/compare/mongodb-8.0.38...mongodb-8.0.39) (2023-11-09)
### Chore
- update container image tccr.io/truecharts/mongodb to v7.0.3 ([#14489](https://github.com/truecharts/charts/issues/14489))
## [mongodb-8.0.38](https://github.com/truecharts/charts/compare/mongodb-8.0.37...mongodb-8.0.38) (2023-11-08)

View File

@ -1,5 +1,5 @@
apiVersion: v2
appVersion: "7.0.3"
appVersion: 7.0.4
dependencies:
- name: common
repository: https://library-charts.truecharts.org
@ -23,7 +23,7 @@ sources:
- https://github.com/bitnami/bitnami-docker-mongodb
- https://www.mongodb.com
type: application
version: 9.0.0
version: 9.0.1
annotations:
truecharts.org/category: database
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,9 @@
## [mongodb-9.0.1](https://github.com/truecharts/charts/compare/mongodb-9.0.0...mongodb-9.0.1) (2023-11-30)
### Chore
- update container image bitnami/mongodb to v7.0.4[@20d7c04](https://github.com/20d7c04) ([#15431](https://github.com/truecharts/charts/issues/15431))

View File

@ -1,7 +1,7 @@
image:
repository: bitnami/mongodb
pullPolicy: IfNotPresent
tag: 7.0.3@sha256:625fba0a6e8a6fb2ce26db40f04cbb42cfbaed25c27aea9ce2642bc274b7a5df
tag: 7.0.4@sha256:20d7c04ac542ad5a46ac3ed0cc7f065b0da20cc72b5e9fe36ece2b565903fff1
workload:
main:
replicas: 1

View File

@ -1646,6 +1646,157 @@ questions:
schema:
type: int
default: 36107
- variable: ingress
label: "Ingress"
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: Enable Ingress
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: hosts
label: Hosts
schema:
type: list
default: []
items:
- variable: hostEntry
label: Host
schema:
additional_attrs: true
type: dict
attrs:
- variable: host
label: HostName
schema:
type: string
default: ""
required: true
- variable: paths
label: Paths
schema:
type: list
default: [{path: "/", pathType: "Prefix"}]
items:
- variable: pathEntry
label: Host
schema:
additional_attrs: true
type: dict
attrs:
- variable: path
label: Path
schema:
type: string
required: true
default: "/"
- variable: pathType
label: Path Type
schema:
type: string
required: true
default: Prefix
- variable: certificateIssuer
label: Cert-Manager clusterIssuer
description: 'add the name of your cert-manager clusterIssuer here for automatic tls certificates. Cannot be used combined with tls option below'
schema:
type: string
default: ""
- variable: middlewares
label: Traefik Middlewares
description: Add previously created Traefik Middlewares to this Ingress
schema:
type: list
default: []
items:
- variable: name
label: Name
schema:
type: string
default: ""
required: true
- variable: advanced
label: Show Advanced Settings
description: Advanced settings are not covered by TrueCharts Support
schema:
type: boolean
default: false
- variable: entrypoint
label: (Advanced) Traefik Entrypoint
description: Entrypoint used by Traefik when using Traefik as Ingress Provider
schema:
type: string
default: websecure
show_if: [["advanced", "=", true]]
required: true
- variable: allowCors
label: "Allow Cross Origin Requests"
schema:
type: boolean
show_if: [["advanced", "=", true]]
default: false
- variable: ingressClassName
label: (Advanced/Optional) IngressClass Name
schema:
type: string
show_if: [["advanced", "=", true]]
default: ""
- variable: tls
label: TLS-Settings
schema:
type: list
show_if: [["advanced", "=", true]]
default: []
items:
- variable: tlsEntry
label: Host
schema:
additional_attrs: true
type: dict
attrs:
- variable: hosts
label: Certificate Hosts
schema:
type: list
default: []
items:
- variable: host
label: Host
schema:
type: string
default: ""
required: true
- variable: certificateIssuer
label: Use Cert-Manager clusterIssuer
description: 'add the name of your cert-manager clusterIssuer here for automatic tls certificates.'
schema:
type: string
default: ""
- variable: clusterCertificate
label: 'Cluster Certificate (Advanced)'
description: 'Add the name of your cluster-wide certificate, that you set up in the ClusterIssuer chart.'
schema:
type: string
show_if: [["certificateIssuer", "=", ""]]
default: ""
- variable: secretName
label: 'Use Custom Certificate Secret (Advanced)'
schema:
show_if: [["certificateIssuer", "=", ""]]
type: string
default: ""
- variable: scaleCert
label: 'Use TrueNAS SCALE Certificate (Deprecated)'
schema:
show_if: [["certificateIssuer", "=", ""]]
type: int
$ref:
- "definitions/certificate"
- variable: envList
label: Codeserver Environment Variables
schema:

View File

@ -1,9 +0,0 @@
## [code-server-8.1.12](https://github.com/truecharts/charts/compare/code-server-8.0.12...code-server-8.1.12) (2023-11-19)
### Feat
- update container image docker.io/codercom/code-server to v4.19.0 ([#15073](https://github.com/truecharts/charts/issues/15073))

View File

@ -4,6 +4,15 @@
## [code-server-8.1.13](https://github.com/truecharts/charts/compare/code-server-8.1.12...code-server-8.1.13) (2023-11-30)
### Chore
- update container image docker.io/codercom/code-server to v4.19.1[@993c381](https://github.com/993c381) ([#15516](https://github.com/truecharts/charts/issues/15516))
## [code-server-8.1.12](https://github.com/truecharts/charts/compare/code-server-8.0.12...code-server-8.1.12) (2023-11-19)
### Feat
@ -88,12 +97,3 @@
- update container image tccr.io/truecharts/code-server to v4.17.1 ([#13106](https://github.com/truecharts/charts/issues/13106))
## [code-server-8.0.3](https://github.com/truecharts/charts/compare/code-server-8.0.2...code-server-8.0.3) (2023-09-23)
### Chore
- update helm general non-major ([#12869](https://github.com/truecharts/charts/issues/12869))

View File

@ -1,5 +1,5 @@
apiVersion: v2
appVersion: 4.19.0
appVersion: 4.19.1
dependencies:
- name: common
repository: https://library-charts.truecharts.org
@ -22,7 +22,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/code-server
- https://github.com/cdr/code-server
type: application
version: 8.1.12
version: 8.1.13
annotations:
truecharts.org/category: media
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,9 @@
## [code-server-8.1.13](https://github.com/truecharts/charts/compare/code-server-8.1.12...code-server-8.1.13) (2023-11-30)
### Chore
- update container image docker.io/codercom/code-server to v4.19.1[@993c381](https://github.com/993c381) ([#15516](https://github.com/truecharts/charts/issues/15516))

View File

@ -1,7 +1,7 @@
image:
repository: docker.io/codercom/code-server
pullPolicy: IfNotPresent
tag: 4.19.0@sha256:d485b27ce0eeb32bc09beb512825eb5ad2d5ad09202e64e0bd4ca27b1555062f
tag: 4.19.1@sha256:993c381c28a3738b903ac21180f5f9dab8f2aa547bbb0b9d69bea558691e10d3
securityContext:
container:
readOnlyRootFilesystem: false

File diff suppressed because it is too large Load Diff

View File

@ -1,9 +0,0 @@
## [cops-5.0.30](https://github.com/truecharts/charts/compare/cops-5.0.29...cops-5.0.30) (2023-11-27)
### Chore
- update container image lscr.io/linuxserver/cops to 2.2.1[@a6d3a6e](https://github.com/a6d3a6e) ([#15398](https://github.com/truecharts/charts/issues/15398))

View File

@ -4,6 +4,15 @@
## [cops-5.0.31](https://github.com/truecharts/charts/compare/cops-5.0.30...cops-5.0.31) (2023-11-30)
### Chore
- update container image lscr.io/linuxserver/cops to 2.2.1[@615415f](https://github.com/615415f) ([#15449](https://github.com/truecharts/charts/issues/15449))
## [cops-5.0.30](https://github.com/truecharts/charts/compare/cops-5.0.29...cops-5.0.30) (2023-11-27)
### Chore
@ -88,12 +97,3 @@
- update helm general non-major ([#14365](https://github.com/truecharts/charts/issues/14365))
## [cops-5.0.20](https://github.com/truecharts/charts/compare/cops-5.0.19...cops-5.0.20) (2023-11-03)
### Chore
- update helm general non-major ([#14287](https://github.com/truecharts/charts/issues/14287))

View File

@ -25,7 +25,7 @@ sources:
- https://github.com/orgs/linuxserver/packages/container/package/cops
- https://github.com/linuxserver/docker-cops#readme
type: application
version: 5.0.30
version: 5.0.31
annotations:
truecharts.org/SCALE-support: "true"
truecharts.org/category: Cloud

View File

@ -0,0 +1,9 @@
## [cops-5.0.31](https://github.com/truecharts/charts/compare/cops-5.0.30...cops-5.0.31) (2023-11-30)
### Chore
- update container image lscr.io/linuxserver/cops to 2.2.1[@615415f](https://github.com/615415f) ([#15449](https://github.com/truecharts/charts/issues/15449))

View File

@ -1,7 +1,7 @@
image:
pullPolicy: IfNotPresent
repository: lscr.io/linuxserver/cops
tag: 2.2.1@sha256:a6d3a6eccc660c86d216659d5ff7b8e777c615c4f71149e4d99f3ecbf0a521d7
tag: 2.2.1@sha256:615415f73b64b65cc795ebf2c1805f4a0b363b7ad818577cb6025152d750f171
securityContext:
container:
readOnlyRootFilesystem: false

View File

@ -2145,6 +2145,157 @@ questions:
schema:
type: int
default: 36107
- variable: ingress
label: "Ingress"
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: Enable Ingress
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: hosts
label: Hosts
schema:
type: list
default: []
items:
- variable: hostEntry
label: Host
schema:
additional_attrs: true
type: dict
attrs:
- variable: host
label: HostName
schema:
type: string
default: ""
required: true
- variable: paths
label: Paths
schema:
type: list
default: [{path: "/", pathType: "Prefix"}]
items:
- variable: pathEntry
label: Host
schema:
additional_attrs: true
type: dict
attrs:
- variable: path
label: Path
schema:
type: string
required: true
default: "/"
- variable: pathType
label: Path Type
schema:
type: string
required: true
default: Prefix
- variable: certificateIssuer
label: Cert-Manager clusterIssuer
description: 'add the name of your cert-manager clusterIssuer here for automatic tls certificates. Cannot be used combined with tls option below'
schema:
type: string
default: ""
- variable: middlewares
label: Traefik Middlewares
description: Add previously created Traefik Middlewares to this Ingress
schema:
type: list
default: []
items:
- variable: name
label: Name
schema:
type: string
default: ""
required: true
- variable: advanced
label: Show Advanced Settings
description: Advanced settings are not covered by TrueCharts Support
schema:
type: boolean
default: false
- variable: entrypoint
label: (Advanced) Traefik Entrypoint
description: Entrypoint used by Traefik when using Traefik as Ingress Provider
schema:
type: string
default: websecure
show_if: [["advanced", "=", true]]
required: true
- variable: allowCors
label: "Allow Cross Origin Requests"
schema:
type: boolean
show_if: [["advanced", "=", true]]
default: false
- variable: ingressClassName
label: (Advanced/Optional) IngressClass Name
schema:
type: string
show_if: [["advanced", "=", true]]
default: ""
- variable: tls
label: TLS-Settings
schema:
type: list
show_if: [["advanced", "=", true]]
default: []
items:
- variable: tlsEntry
label: Host
schema:
additional_attrs: true
type: dict
attrs:
- variable: hosts
label: Certificate Hosts
schema:
type: list
default: []
items:
- variable: host
label: Host
schema:
type: string
default: ""
required: true
- variable: certificateIssuer
label: Use Cert-Manager clusterIssuer
description: 'add the name of your cert-manager clusterIssuer here for automatic tls certificates.'
schema:
type: string
default: ""
- variable: clusterCertificate
label: 'Cluster Certificate (Advanced)'
description: 'Add the name of your cluster-wide certificate, that you set up in the ClusterIssuer chart.'
schema:
type: string
show_if: [["certificateIssuer", "=", ""]]
default: ""
- variable: secretName
label: 'Use Custom Certificate Secret (Advanced)'
schema:
show_if: [["certificateIssuer", "=", ""]]
type: string
default: ""
- variable: scaleCert
label: 'Use TrueNAS SCALE Certificate (Deprecated)'
schema:
show_if: [["certificateIssuer", "=", ""]]
type: int
$ref:
- "definitions/certificate"
- variable: envList
label: Codeserver Environment Variables
schema:

View File

@ -1,9 +0,0 @@
## [dashy-3.0.29](https://github.com/truecharts/charts/compare/dashy-3.0.28...dashy-3.0.29) (2023-11-17)
### Fix
- update container image lissy93/dashy to 2.1.1 ([#14777](https://github.com/truecharts/charts/issues/14777))

View File

@ -4,6 +4,15 @@
## [dashy-3.0.30](https://github.com/truecharts/charts/compare/dashy-3.0.29...dashy-3.0.30) (2023-11-30)
### Chore
- update container image lissy93/dashy to 2.1.1[@089b7d6](https://github.com/089b7d6) ([#15522](https://github.com/truecharts/charts/issues/15522))
## [dashy-3.0.29](https://github.com/truecharts/charts/compare/dashy-3.0.28...dashy-3.0.29) (2023-11-17)
### Fix
@ -88,12 +97,3 @@
- update container image tccr.io/truecharts/dashy to v2.1.1 ([#13788](https://github.com/truecharts/charts/issues/13788))
## [dashy-3.0.19](https://github.com/truecharts/charts/compare/dashy-3.0.18...dashy-3.0.19) (2023-10-17)
### Chore
- update container image tccr.io/truecharts/dashy to v2.1.1 ([#13718](https://github.com/truecharts/charts/issues/13718))

View File

@ -1,5 +1,5 @@
apiVersion: v2
appVersion: "2.1.1"
appVersion: 2.1.1
dependencies:
- name: common
repository: https://library-charts.truecharts.org
@ -18,7 +18,7 @@ name: dashy
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/dashy
- https://github.com/Lissy93/dashy
version: 3.0.29
version: 3.0.30
annotations:
truecharts.org/category: dashboard
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,9 @@
## [dashy-3.0.30](https://github.com/truecharts/charts/compare/dashy-3.0.29...dashy-3.0.30) (2023-11-30)
### Chore
- update container image lissy93/dashy to 2.1.1[@089b7d6](https://github.com/089b7d6) ([#15522](https://github.com/truecharts/charts/issues/15522))

View File

@ -1,6 +1,6 @@
image:
repository: lissy93/dashy
tag: 2.1.1@sha256:d667818d3a30caa04bcd39f9e45b6c3a2d9871cbbece20758b68571587a7544e
tag: 2.1.1@sha256:089b7d6e6618caa6eb59ee41a266e8117e580e8fffeb242235025954138a0349
pullPolicy: IfNotPresent
securityContext:
container:

View File

@ -1978,6 +1978,157 @@ questions:
schema:
type: int
default: 36107
- variable: ingress
label: "Ingress"
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: Enable Ingress
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: hosts
label: Hosts
schema:
type: list
default: []
items:
- variable: hostEntry
label: Host
schema:
additional_attrs: true
type: dict
attrs:
- variable: host
label: HostName
schema:
type: string
default: ""
required: true
- variable: paths
label: Paths
schema:
type: list
default: [{path: "/", pathType: "Prefix"}]
items:
- variable: pathEntry
label: Host
schema:
additional_attrs: true
type: dict
attrs:
- variable: path
label: Path
schema:
type: string
required: true
default: "/"
- variable: pathType
label: Path Type
schema:
type: string
required: true
default: Prefix
- variable: certificateIssuer
label: Cert-Manager clusterIssuer
description: 'add the name of your cert-manager clusterIssuer here for automatic tls certificates. Cannot be used combined with tls option below'
schema:
type: string
default: ""
- variable: middlewares
label: Traefik Middlewares
description: Add previously created Traefik Middlewares to this Ingress
schema:
type: list
default: []
items:
- variable: name
label: Name
schema:
type: string
default: ""
required: true
- variable: advanced
label: Show Advanced Settings
description: Advanced settings are not covered by TrueCharts Support
schema:
type: boolean
default: false
- variable: entrypoint
label: (Advanced) Traefik Entrypoint
description: Entrypoint used by Traefik when using Traefik as Ingress Provider
schema:
type: string
default: websecure
show_if: [["advanced", "=", true]]
required: true
- variable: allowCors
label: "Allow Cross Origin Requests"
schema:
type: boolean
show_if: [["advanced", "=", true]]
default: false
- variable: ingressClassName
label: (Advanced/Optional) IngressClass Name
schema:
type: string
show_if: [["advanced", "=", true]]
default: ""
- variable: tls
label: TLS-Settings
schema:
type: list
show_if: [["advanced", "=", true]]
default: []
items:
- variable: tlsEntry
label: Host
schema:
additional_attrs: true
type: dict
attrs:
- variable: hosts
label: Certificate Hosts
schema:
type: list
default: []
items:
- variable: host
label: Host
schema:
type: string
default: ""
required: true
- variable: certificateIssuer
label: Use Cert-Manager clusterIssuer
description: 'add the name of your cert-manager clusterIssuer here for automatic tls certificates.'
schema:
type: string
default: ""
- variable: clusterCertificate
label: 'Cluster Certificate (Advanced)'
description: 'Add the name of your cluster-wide certificate, that you set up in the ClusterIssuer chart.'
schema:
type: string
show_if: [["certificateIssuer", "=", ""]]
default: ""
- variable: secretName
label: 'Use Custom Certificate Secret (Advanced)'
schema:
show_if: [["certificateIssuer", "=", ""]]
type: string
default: ""
- variable: scaleCert
label: 'Use TrueNAS SCALE Certificate (Deprecated)'
schema:
show_if: [["certificateIssuer", "=", ""]]
type: int
$ref:
- "definitions/certificate"
- variable: envList
label: Codeserver Environment Variables
schema:

View File

@ -0,0 +1,99 @@
**Important:**
*for the complete changelog, please refer to the website*
## [jellyfin-15.0.29](https://github.com/truecharts/charts/compare/jellyfin-15.0.28...jellyfin-15.0.29) (2023-11-30)
### Chore
- update container image docker.io/jellyfin/jellyfin to v10.8.13[@05a9734](https://github.com/05a9734) ([#15490](https://github.com/truecharts/charts/issues/15490))
## [jellyfin-15.0.28](https://github.com/truecharts/charts/compare/jellyfin-15.0.27...jellyfin-15.0.28) (2023-11-25)
### Chore
- lint files ([#15238](https://github.com/truecharts/charts/issues/15238))
- update container image docker.io/alpine/socat to 1.7.4.4[@7528e31](https://github.com/7528e31) ([#15356](https://github.com/truecharts/charts/issues/15356))
## [jellyfin-15.0.27](https://github.com/truecharts/charts/compare/jellyfin-15.0.26...jellyfin-15.0.27) (2023-11-18)
### Fix
- update container image docker.io/alpine/socat to 1.7.4.4 ([#14848](https://github.com/truecharts/charts/issues/14848))
## [jellyfin-15.0.26](https://github.com/truecharts/charts/compare/jellyfin-15.0.25...jellyfin-15.0.26) (2023-11-18)
## [jellyfin-15.0.25](https://github.com/truecharts/charts/compare/jellyfin-15.0.24...jellyfin-15.0.25) (2023-11-17)
## [jellyfin-15.0.24](https://github.com/truecharts/charts/compare/jellyfin-15.0.23...jellyfin-15.0.24) (2023-11-15)
### Chore
- update container image tccr.io/truecharts/socat to v1.7.4.4 ([#14670](https://github.com/truecharts/charts/issues/14670))
## [jellyfin-15.0.23](https://github.com/truecharts/charts/compare/jellyfin-15.0.22...jellyfin-15.0.23) (2023-11-08)
### Chore
- update helm general non-major ([#14465](https://github.com/truecharts/charts/issues/14465))
## [jellyfin-15.0.22](https://github.com/truecharts/charts/compare/jellyfin-15.0.21...jellyfin-15.0.22) (2023-11-08)
### Chore
- update helm general non-major ([#14454](https://github.com/truecharts/charts/issues/14454))
## [jellyfin-15.0.21](https://github.com/truecharts/charts/compare/jellyfin-15.0.20...jellyfin-15.0.21) (2023-11-05)
### Chore
- update container image tccr.io/truecharts/jellyfin to v10.8.12 ([#14369](https://github.com/truecharts/charts/issues/14369))
## [jellyfin-15.0.20](https://github.com/truecharts/charts/compare/jellyfin-15.0.19...jellyfin-15.0.20) (2023-11-05)
### Chore
- update helm general non-major ([#14365](https://github.com/truecharts/charts/issues/14365))
## [jellyfin-15.0.19](https://github.com/truecharts/charts/compare/jellyfin-15.0.18...jellyfin-15.0.19) (2023-11-04)
### Feat
- use tc-opencors-chain if allow-cors is enabled ([#13240](https://github.com/truecharts/charts/issues/13240))
### Fix
- Fix autodiscovery question ([#14344](https://github.com/truecharts/charts/issues/14344))

View File

@ -0,0 +1,28 @@
apiVersion: v2
appVersion: 10.8.13
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.3.5
deprecated: false
description: Jellyfin is a Free Software Media System
home: https://truecharts.org/charts/stable/jellyfin
icon: https://truecharts.org/img/hotlink-ok/chart-icons/jellyfin.png
keywords:
- jellyfin
- plex
- emby
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: jellyfin
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/jellyfin
- https://github.com/jellyfin/jellyfin
type: application
version: 15.0.29
annotations:
truecharts.org/category: media
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,9 @@
## [jellyfin-15.0.29](https://github.com/truecharts/charts/compare/jellyfin-15.0.28...jellyfin-15.0.29) (2023-11-30)
### Chore
- update container image docker.io/jellyfin/jellyfin to v10.8.13[@05a9734](https://github.com/05a9734) ([#15490](https://github.com/truecharts/charts/issues/15490))

View File

@ -0,0 +1,8 @@
Jellyfin is a Free Software Media System
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/jellyfin](https://truecharts.org/charts/stable/jellyfin)
---
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!

View File

@ -0,0 +1,98 @@
image:
repository: docker.io/jellyfin/jellyfin
pullPolicy: IfNotPresent
tag: 10.8.13@sha256:05a9734d7e83086b957c5b7a16cbb5a60b5bb8d113ffb953e57547359dd05140
broadcastProxyImage:
repository: docker.io/alpine/socat
pullPolicy: IfNotPresent
tag: 1.7.4.4@sha256:7528e3194467c5207b7d9af72298c7a871955639decaf463c6a4cde6fb66a1a4
service:
main:
ports:
main:
port: 8096
targetPort: 8096
autodiscovery:
enabled: true
ports:
autodiscovery:
enabled: true
protocol: udp
port: 7359
targetPort: 7359
persistence:
config:
enabled: true
mountPath: "/config"
cache:
enabled: true
mountPath: "/cache"
type: "emptyDir"
transcode:
enabled: true
mountPath: "/config/transcodes"
type: "emptyDir"
portal:
open:
enabled: true
securityContext:
container:
readOnlyRootFilesystem: false
workload:
main:
podSpec:
containers:
main:
env:
JELLYFIN_PublishedServerUrl: "{{ $.Values.chartContext.APPURL }}"
broadcastproxy:
enabled: false
type: DaemonSet
podSpec:
hostNetwork: true
# Proxy doesn't seem to respect the TERM signal, so by default
# this ends up just hanging until the default grace period ends.
# This is unnecesary since this workload only proxies autodiscovery
# messages.
terminationGracePeriodSeconds: 3
containers:
broadcastproxy:
enabled: true
primary: true
imageSelector: broadcastProxyImage
securityContext:
readOnlyRootFilesystem: true
command: ["/bin/sh"]
# Quite a lot going on here:
# - Resolve Jellyfin's autodiscovery service IP from its FQDN via getent hosts
# - Export the IP to `$TARGET_IP`
# - Check `$TARGET_IP` is not empty (so we can crash if it is - will help to detect templating errors)
# - Touch `/tmp/healty` to use with the readiness, liveness and startup probes
# - Start socat in proxy mode
# - On exit remove `/tmp/healthy`
args:
- "-c"
- 'export TARGET_IP=$(getent hosts ''{{ printf "%v-autodiscovery" (include "tc.v1.common.lib.chart.names.fullname" $) }}'' | awk ''{ print $1 }'') && [[ ! -z $TARGET_IP ]] && touch /tmp/healthy && socat UDP-LISTEN:7359,fork,reuseaddr,rcvbuf=8096 UDP4-SENDTO:${TARGET_IP}:7359,rcvbuf=8096 ; rm -rf /tmp/healthy'
probes:
readiness:
enabled: true
type: exec
command:
- cat
- /tmp/healthy
liveness:
enabled: true
type: exec
command:
- cat
- /tmp/healthy
startup:
enabled: true
type: exec
command:
- cat
- /tmp/healthy
# -- enable Jellyfin autodiscovery on LAN
autodiscovery:
enabled: false
updated: true

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,8 @@
{{- include "tc.v1.common.loader.init" . }}
{{- if .Values.autodiscovery.enabled -}}
{{/* Add proxy workload */}}
{{- $_ := set .Values.workload.broadcastproxy "enabled" true -}}
{{- end -}}
{{- include "tc.v1.common.loader.apply" . -}}

View File

@ -4,6 +4,15 @@
## [libreddit-5.0.10](https://github.com/truecharts/charts/compare/libreddit-5.0.9...libreddit-5.0.10) (2023-11-30)
### Chore
- update container image libreddit/libreddit to latest[@70613be](https://github.com/70613be) ([#15507](https://github.com/truecharts/charts/issues/15507))
## [libreddit-5.0.9](https://github.com/truecharts/charts/compare/libreddit-5.0.8...libreddit-5.0.9) (2023-11-17)
@ -88,12 +97,3 @@
## [libreddit-4.0.28](https://github.com/truecharts/charts/compare/libreddit-4.0.27...libreddit-4.0.28) (2023-07-01)
### Chore
- update helm general non-major ([#10069](https://github.com/truecharts/charts/issues/10069))
## [libreddit-4.0.27](https://github.com/truecharts/charts/compare/libreddit-4.0.26...libreddit-4.0.27) (2023-06-14)

View File

@ -1,5 +1,5 @@
apiVersion: v2
appVersion: "latest"
appVersion: latest
dependencies:
- name: common
repository: https://library-charts.truecharts.org
@ -20,7 +20,7 @@ name: libreddit
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/libreddit
- https://github.com/spikecodes/libreddit
version: 5.0.9
version: 5.0.10
annotations:
truecharts.org/category: media
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,9 @@
## [libreddit-5.0.10](https://github.com/truecharts/charts/compare/libreddit-5.0.9...libreddit-5.0.10) (2023-11-30)
### Chore
- update container image libreddit/libreddit to latest[@70613be](https://github.com/70613be) ([#15507](https://github.com/truecharts/charts/issues/15507))

View File

@ -1,6 +1,6 @@
image:
repository: libreddit/libreddit
tag: latest@sha256:e79a5d6f6836b5a9351340433b1c26e8571ded943a5318f41ae939d314434c84
tag: latest@sha256:70613be4f824bcfd9746c3ad21eb6c5db457cfa641a7a4dba604fd0945917af3
pullPolicy: IfNotPresent
libreddit:
theme: system

View File

@ -1865,6 +1865,157 @@ questions:
schema:
type: int
default: 36107
- variable: ingress
label: "Ingress"
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: Enable Ingress
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: hosts
label: Hosts
schema:
type: list
default: []
items:
- variable: hostEntry
label: Host
schema:
additional_attrs: true
type: dict
attrs:
- variable: host
label: HostName
schema:
type: string
default: ""
required: true
- variable: paths
label: Paths
schema:
type: list
default: [{path: "/", pathType: "Prefix"}]
items:
- variable: pathEntry
label: Host
schema:
additional_attrs: true
type: dict
attrs:
- variable: path
label: Path
schema:
type: string
required: true
default: "/"
- variable: pathType
label: Path Type
schema:
type: string
required: true
default: Prefix
- variable: certificateIssuer
label: Cert-Manager clusterIssuer
description: 'add the name of your cert-manager clusterIssuer here for automatic tls certificates. Cannot be used combined with tls option below'
schema:
type: string
default: ""
- variable: middlewares
label: Traefik Middlewares
description: Add previously created Traefik Middlewares to this Ingress
schema:
type: list
default: []
items:
- variable: name
label: Name
schema:
type: string
default: ""
required: true
- variable: advanced
label: Show Advanced Settings
description: Advanced settings are not covered by TrueCharts Support
schema:
type: boolean
default: false
- variable: entrypoint
label: (Advanced) Traefik Entrypoint
description: Entrypoint used by Traefik when using Traefik as Ingress Provider
schema:
type: string
default: websecure
show_if: [["advanced", "=", true]]
required: true
- variable: allowCors
label: "Allow Cross Origin Requests"
schema:
type: boolean
show_if: [["advanced", "=", true]]
default: false
- variable: ingressClassName
label: (Advanced/Optional) IngressClass Name
schema:
type: string
show_if: [["advanced", "=", true]]
default: ""
- variable: tls
label: TLS-Settings
schema:
type: list
show_if: [["advanced", "=", true]]
default: []
items:
- variable: tlsEntry
label: Host
schema:
additional_attrs: true
type: dict
attrs:
- variable: hosts
label: Certificate Hosts
schema:
type: list
default: []
items:
- variable: host
label: Host
schema:
type: string
default: ""
required: true
- variable: certificateIssuer
label: Use Cert-Manager clusterIssuer
description: 'add the name of your cert-manager clusterIssuer here for automatic tls certificates.'
schema:
type: string
default: ""
- variable: clusterCertificate
label: 'Cluster Certificate (Advanced)'
description: 'Add the name of your cluster-wide certificate, that you set up in the ClusterIssuer chart.'
schema:
type: string
show_if: [["certificateIssuer", "=", ""]]
default: ""
- variable: secretName
label: 'Use Custom Certificate Secret (Advanced)'
schema:
show_if: [["certificateIssuer", "=", ""]]
type: string
default: ""
- variable: scaleCert
label: 'Use TrueNAS SCALE Certificate (Deprecated)'
schema:
show_if: [["certificateIssuer", "=", ""]]
type: int
$ref:
- "definitions/certificate"
- variable: envList
label: Codeserver Environment Variables
schema:

View File

@ -1,4 +0,0 @@
## [libreddit-5.0.9](https://github.com/truecharts/charts/compare/libreddit-5.0.8...libreddit-5.0.9) (2023-11-17)

View File

@ -1,9 +0,0 @@
## [logitech-media-server-8.0.17](https://github.com/truecharts/charts/compare/logitech-media-server-8.0.16...logitech-media-server-8.0.17) (2023-11-26)
### Chore
- update container image lmscommunity/logitechmediaserver to 8.4.0[@098b17d](https://github.com/098b17d) ([#15388](https://github.com/truecharts/charts/issues/15388))

View File

@ -4,6 +4,15 @@
## [logitech-media-server-8.0.18](https://github.com/truecharts/charts/compare/logitech-media-server-8.0.17...logitech-media-server-8.0.18) (2023-11-30)
### Chore
- update container image lmscommunity/logitechmediaserver to 8.4.0[@9988d4b](https://github.com/9988d4b) ([#15428](https://github.com/truecharts/charts/issues/15428))
## [logitech-media-server-8.0.17](https://github.com/truecharts/charts/compare/logitech-media-server-8.0.16...logitech-media-server-8.0.17) (2023-11-26)
### Chore
@ -88,12 +97,3 @@
- update helm general non-major ([#14465](https://github.com/truecharts/charts/issues/14465))
## [logitech-media-server-8.0.7](https://github.com/truecharts/charts/compare/logitech-media-server-8.0.6...logitech-media-server-8.0.7) (2023-11-08)
### Chore
- update helm general non-major ([#14454](https://github.com/truecharts/charts/issues/14454))

View File

@ -23,7 +23,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/logitech-media-server
- https://github.com/Logitech/slimserver
type: application
version: 8.0.17
version: 8.0.18
annotations:
truecharts.org/category: media
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,9 @@
## [logitech-media-server-8.0.18](https://github.com/truecharts/charts/compare/logitech-media-server-8.0.17...logitech-media-server-8.0.18) (2023-11-30)
### Chore
- update container image lmscommunity/logitechmediaserver to 8.4.0[@9988d4b](https://github.com/9988d4b) ([#15428](https://github.com/truecharts/charts/issues/15428))

View File

@ -1,7 +1,7 @@
image:
repository: lmscommunity/logitechmediaserver
pullPolicy: IfNotPresent
tag: 8.4.0@sha256:098b17dcf31dd4af963f7deb69beadf2527084b73fbccc0752e0418c06285793
tag: 8.4.0@sha256:9988d4b2b23899ab3cf38e3fccefb64e9e550f56f291ff61dd0b074350192ed3
service:
main:
ports:

View File

@ -2103,6 +2103,157 @@ questions:
schema:
type: int
default: 36107
- variable: ingress
label: "Ingress"
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: Enable Ingress
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: hosts
label: Hosts
schema:
type: list
default: []
items:
- variable: hostEntry
label: Host
schema:
additional_attrs: true
type: dict
attrs:
- variable: host
label: HostName
schema:
type: string
default: ""
required: true
- variable: paths
label: Paths
schema:
type: list
default: [{path: "/", pathType: "Prefix"}]
items:
- variable: pathEntry
label: Host
schema:
additional_attrs: true
type: dict
attrs:
- variable: path
label: Path
schema:
type: string
required: true
default: "/"
- variable: pathType
label: Path Type
schema:
type: string
required: true
default: Prefix
- variable: certificateIssuer
label: Cert-Manager clusterIssuer
description: 'add the name of your cert-manager clusterIssuer here for automatic tls certificates. Cannot be used combined with tls option below'
schema:
type: string
default: ""
- variable: middlewares
label: Traefik Middlewares
description: Add previously created Traefik Middlewares to this Ingress
schema:
type: list
default: []
items:
- variable: name
label: Name
schema:
type: string
default: ""
required: true
- variable: advanced
label: Show Advanced Settings
description: Advanced settings are not covered by TrueCharts Support
schema:
type: boolean
default: false
- variable: entrypoint
label: (Advanced) Traefik Entrypoint
description: Entrypoint used by Traefik when using Traefik as Ingress Provider
schema:
type: string
default: websecure
show_if: [["advanced", "=", true]]
required: true
- variable: allowCors
label: "Allow Cross Origin Requests"
schema:
type: boolean
show_if: [["advanced", "=", true]]
default: false
- variable: ingressClassName
label: (Advanced/Optional) IngressClass Name
schema:
type: string
show_if: [["advanced", "=", true]]
default: ""
- variable: tls
label: TLS-Settings
schema:
type: list
show_if: [["advanced", "=", true]]
default: []
items:
- variable: tlsEntry
label: Host
schema:
additional_attrs: true
type: dict
attrs:
- variable: hosts
label: Certificate Hosts
schema:
type: list
default: []
items:
- variable: host
label: Host
schema:
type: string
default: ""
required: true
- variable: certificateIssuer
label: Use Cert-Manager clusterIssuer
description: 'add the name of your cert-manager clusterIssuer here for automatic tls certificates.'
schema:
type: string
default: ""
- variable: clusterCertificate
label: 'Cluster Certificate (Advanced)'
description: 'Add the name of your cluster-wide certificate, that you set up in the ClusterIssuer chart.'
schema:
type: string
show_if: [["certificateIssuer", "=", ""]]
default: ""
- variable: secretName
label: 'Use Custom Certificate Secret (Advanced)'
schema:
show_if: [["certificateIssuer", "=", ""]]
type: string
default: ""
- variable: scaleCert
label: 'Use TrueNAS SCALE Certificate (Deprecated)'
schema:
show_if: [["certificateIssuer", "=", ""]]
type: int
$ref:
- "definitions/certificate"
- variable: envList
label: Codeserver Environment Variables
schema:

View File

@ -1,9 +0,0 @@
## [monica-8.0.10](https://github.com/truecharts/charts/compare/monica-8.0.9...monica-8.0.10) (2023-11-24)
### Chore
- update container image monica to 4.0.0[@fa8a168](https://github.com/fa8a168) ([#15254](https://github.com/truecharts/charts/issues/15254))

View File

@ -4,6 +4,15 @@
## [monica-8.0.11](https://github.com/truecharts/charts/compare/monica-8.0.10...monica-8.0.11) (2023-11-30)
### Chore
- update container image monica to 4.0.0[@17650d0](https://github.com/17650d0) ([#15465](https://github.com/truecharts/charts/issues/15465))
## [monica-8.0.10](https://github.com/truecharts/charts/compare/monica-8.0.9...monica-8.0.10) (2023-11-24)
### Chore
@ -88,12 +97,3 @@
## [monica-7.0.20](https://github.com/truecharts/charts/compare/monica-7.0.19...monica-7.0.20) (2023-07-29)
### Chore
- update helm general non-major ([#10955](https://github.com/truecharts/charts/issues/10955))
## [monica-7.0.19](https://github.com/truecharts/charts/compare/monica-7.0.18...monica-7.0.19) (2023-07-04)

View File

@ -22,7 +22,7 @@ name: monica
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/monica
- https://github.com/monicahq/monica
version: 8.0.10
version: 8.0.11
annotations:
truecharts.org/category: crm
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,9 @@
## [monica-8.0.11](https://github.com/truecharts/charts/compare/monica-8.0.10...monica-8.0.11) (2023-11-30)
### Chore
- update container image monica to 4.0.0[@17650d0](https://github.com/17650d0) ([#15465](https://github.com/truecharts/charts/issues/15465))

View File

@ -1,6 +1,6 @@
image:
repository: monica
tag: 4.0.0@sha256:fa8a1686280abafb926ff816fb812ba02d5add8035670b98343111f80fcf41bc
tag: 4.0.0@sha256:17650d0e3ebc0e0c4c8011caa3129af82f52907b3518a92df65033d07415d9af
pullPolicy: IfNotPresent
service:
main:

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,99 @@
**Important:**
*for the complete changelog, please refer to the website*
## [organizr-15.0.10](https://github.com/truecharts/charts/compare/organizr-15.0.9...organizr-15.0.10) (2023-11-30)
### Chore
- update container image organizr/organizr to latest[@2a42163](https://github.com/2a42163) ([#15527](https://github.com/truecharts/charts/issues/15527))
## [organizr-15.0.9](https://github.com/truecharts/charts/compare/organizr-15.0.8...organizr-15.0.9) (2023-11-17)
## [organizr-15.0.8](https://github.com/truecharts/charts/compare/organizr-15.0.7...organizr-15.0.8) (2023-11-08)
### Chore
- update helm general non-major ([#14465](https://github.com/truecharts/charts/issues/14465))
## [organizr-15.0.7](https://github.com/truecharts/charts/compare/organizr-15.0.6...organizr-15.0.7) (2023-11-08)
### Chore
- update helm general non-major ([#14454](https://github.com/truecharts/charts/issues/14454))
## [organizr-15.0.6](https://github.com/truecharts/charts/compare/organizr-15.0.5...organizr-15.0.6) (2023-11-05)
### Chore
- update helm general non-major ([#14365](https://github.com/truecharts/charts/issues/14365))
## [organizr-15.0.5](https://github.com/truecharts/charts/compare/organizr-15.0.4...organizr-15.0.5) (2023-11-03)
### Chore
- update helm general non-major ([#14287](https://github.com/truecharts/charts/issues/14287))
## [organizr-15.0.4](https://github.com/truecharts/charts/compare/organizr-15.0.3...organizr-15.0.4) (2023-10-29)
### Chore
- update helm general non-major ([#14094](https://github.com/truecharts/charts/issues/14094))
## [organizr-15.0.3](https://github.com/truecharts/charts/compare/organizr-15.0.1...organizr-15.0.3) (2023-10-28)
### Chore
- Fix typo in categories and make them singular ([#13693](https://github.com/truecharts/charts/issues/13693))
## [organizr-15.0.1](https://github.com/truecharts/charts/compare/organizr-15.0.0...organizr-15.0.1) (2023-10-07)
### Chore
- update helm general non-major ([#13386](https://github.com/truecharts/charts/issues/13386))
## [organizr-15.0.0](https://github.com/truecharts/charts/compare/organizr-14.0.22...organizr-15.0.0) (2023-07-31)
## [organizr-14.0.22](https://github.com/truecharts/charts/compare/organizr-14.0.21...organizr-14.0.22) (2023-07-29)
### Chore
- update helm general non-major ([#10955](https://github.com/truecharts/charts/issues/10955))
## [organizr-14.0.21](https://github.com/truecharts/charts/compare/organizr-14.0.20...organizr-14.0.21) (2023-07-01)

View File

@ -0,0 +1,26 @@
apiVersion: v2
appVersion: latest
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.3.5
deprecated: false
description: HTPC/Homelab Services Organizer
home: https://truecharts.org/charts/stable/organizr
icon: https://truecharts.org/img/hotlink-ok/chart-icons/organizr.png
keywords:
- organizr
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: organizr
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/organizr
- https://github.com/causefx/Organizr
type: application
version: 15.0.10
annotations:
truecharts.org/category: organizers
truecharts.org/SCALE-support: "true"

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