Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-12-09 00:37:23 +00:00
parent acc785aadf
commit 13941f486e
184 changed files with 34529 additions and 293 deletions

View File

@ -1,9 +0,0 @@
## [beets-8.0.27](https://github.com/truecharts/charts/compare/beets-8.0.26...beets-8.0.27) (2023-12-03)
### Chore
- bump everything to ensure catalog has latest versions

View File

@ -4,6 +4,15 @@
## [beets-8.0.28](https://github.com/truecharts/charts/compare/beets-8.0.27...beets-8.0.28) (2023-12-09)
### Chore
- update container image ghcr.io/linuxserver/beets to version-1.6.0[@5d417a0](https://github.com/5d417a0) ([#15895](https://github.com/truecharts/charts/issues/15895))
## [beets-8.0.27](https://github.com/truecharts/charts/compare/beets-8.0.26...beets-8.0.27) (2023-12-03)
### Chore
@ -88,12 +97,3 @@
### Chore
- update helm general non-major ([#14365](https://github.com/truecharts/charts/issues/14365))
## [beets-8.0.18](https://github.com/truecharts/charts/compare/beets-8.0.17...beets-8.0.18) (2023-11-03)
### Chore
- update container image tccr.io/truecharts/beets to v1.6.0 ([#14309](https://github.com/truecharts/charts/issues/14309))

View File

@ -1,17 +1,17 @@
kubeVersion: ">=1.24.0"
apiVersion: v2
name: beets
version: 8.0.27
version: 8.0.28
appVersion: 1.6.0
description: A music library manager and not, for the most part, a music player.
home: https://truecharts.org/charts/stable/beets
icon: https://truecharts.org/img/hotlink-ok/chart-icons/beets.png
deprecated: false
sources:
- https://ghcr.io/linuxserver/beets
- https://beets.io/
- https://github.com/linuxserver/docker-beets
- https://beets.io/
- https://github.com/truecharts/charts/tree/master/charts/stable/beets
- https://ghcr.io/linuxserver/beets
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@ -0,0 +1,9 @@
## [beets-8.0.28](https://github.com/truecharts/charts/compare/beets-8.0.27...beets-8.0.28) (2023-12-09)
### Chore
- update container image ghcr.io/linuxserver/beets to version-1.6.0[@5d417a0](https://github.com/5d417a0) ([#15895](https://github.com/truecharts/charts/issues/15895))

View File

@ -1,7 +1,7 @@
image:
repository: ghcr.io/linuxserver/beets
pullPolicy: IfNotPresent
tag: version-1.6.0@sha256:3008a530acc6440f50885e8f1c32bc7e3324e369800bff63664f8dac7eb02120
tag: version-1.6.0@sha256:5d417a0b753e939a1598a290a85e17d0bfce1678d404ed797af4b82b5388840c
securityContext:
container:
readOnlyRootFilesystem: false

View File

@ -100,8 +100,6 @@ questions:
additional_attrs: true
type: dict
attrs:
- 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..."
@ -228,6 +226,44 @@ questions:
schema:
type: string
required: true
- variable: imagePullSecretList
group: "General Settings"
label: "Image Pull Secrets"
schema:
type: list
default: []
items:
- variable: pullsecretentry
label: "Pull Secret"
schema:
type: dict
additional_attrs: true
attrs:
- variable: registry
label: "Registry"
schema:
type: string
required: true
default: "https://index.docker.io/v1/"
- variable: username
label: "Username"
schema:
type: string
required: true
default: ""
- variable: password
label: "Password"
schema:
type: string
required: true
default: ""
- variable: email
label: "Email"
schema:
type: string
required: true
default: ""
- variable: service
group: Networking and Services
label: Configure Service(s)
@ -283,7 +319,7 @@ questions:
description: "This port exposes the container port on the service"
schema:
type: int
default: 8282
default: 8337
required: true
- variable: serviceexpert
group: Networking and Services
@ -513,9 +549,9 @@ questions:
additional_attrs: true
type: dict
attrs:
- variable: database
label: "App Database Storage"
description: "Stores the Application Database."
- variable: config
label: "App Config Storage"
description: "Stores the Application Configuration."
schema:
additional_attrs: true
type: dict
@ -535,6 +571,8 @@ questions:
description: emptyDir
- value: nfs
description: NFS Share
- value: iscsi
description: iSCSI Share
- variable: server
label: NFS Server
schema:
@ -547,200 +585,83 @@ questions:
show_if: [["type", "=", "nfs"]]
type: string
default: ""
- variable: autoPermissions
label: Automatic Permissions Configuration
description: Automatically set permissions
- variable: iscsi
label: iSCSI Options
schema:
show_if: [["type", "!=", "pvc"]]
show_if: [["type", "=", "iscsi"]]
type: dict
additional_attrs: true
attrs:
- variable: enabled
label: enabled
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: chown
label: Run CHOWN
description: |
It will run CHOWN on the path with the given fsGroup
schema:
type: boolean
default: false
- variable: chmod
label: Run CHMOD
description: |
It will run CHMOD on the path with the given value</br>
Format should be 3 digits, e.g. 770
schema:
type: string
valid_chars: '[0-9]{3}'
default: ""
- variable: recursive
label: Recursive
description: |
It will run CHOWN and CHMOD recursively
schema:
type: boolean
default: false
- variable: readOnly
label: Read Only
schema:
type: boolean
default: false
- variable: hostPath
label: Host Path
description: Path inside the container the storage is mounted
schema:
show_if: [["type", "=", "hostPath"]]
type: hostpath
- variable: medium
label: EmptyDir Medium
schema:
show_if: [["type", "=", "emptyDir"]]
type: string
default: ""
enum:
- value: ""
description: Default
- value: Memory
description: Memory
- variable: size
label: Size quotum of Storage (Do NOT REDUCE after installation)
description: This value can ONLY be INCREASED after the installation
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: 256Gi
- variable: storageClass
label: 'storageClass (Advanced)'
description: 'sets the storageClass to something other than iX default. Only for advanced usecases!'
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: ""
- variable: static
label: 'Static Fixed PVC Bindings (Experimental)'
description: Link a PVC to a specific storage location
schema:
show_if: [["type", "=", "pvc"]]
type: dict
additional_attrs: true
attrs:
- variable: mode
label: mode
description: |
disabled: use normal dynamic PVCs
smb: connect to an SMB share
nfs: connect to an NFS share
- variable: targetPortal
label: targetPortal
schema:
type: string
default: "disabled"
enum:
- value: "disabled"
description: disabled
- value: smb
description: smb
- value: nfs
description: nfs
- variable: server
label: Server
description: server to connect to
schema:
type: string
show_if: [["mode", "!=", "disabled"]]
default: "myserver"
- variable: share
label: Share
description: share to connect to
schema:
type: string
show_if: [["mode", "!=", "disabled"]]
default: "/myshare"
- variable: user
label: User
description: connecting user
schema:
type: string
show_if: [["mode", "=", "smb"]]
default: "myuser"
- variable: domain
label: Domain
description: user domain
schema:
type: string
show_if: [["mode", "=", "smb"]]
required: true
default: ""
- variable: password
label: Password
description: connecting password
- variable: iqn
label: iqn
schema:
type: string
show_if: [["mode", "=", "smb"]]
required: true
default: ""
- variable: volumeSnapshots
label: 'Volume Snapshots (Experimental)'
description: Add an entry to the list to force creation of a volumeSnapshot of this PVC
schema:
show_if: [["type", "=", "pvc"]]
type: list
default: []
items:
- variable: volumeSnapshotEntry
label: Custom volumeSnapshot
- variable: lun
label: lun
schema:
type: int
default: 0
- variable: authSession
label: authSession
schema:
additional_attrs: true
type: dict
additional_attrs: true
attrs:
- variable: name
label: Name
description: 'WARNING: renaming this, means deletion of the snapshot with the old name!'
schema:
type: string
default: "mysnapshot"
required: true
- variable: volumeSnapshotClassName
label: 'volumeSnapshot Class Name (Advanced)'
description: For use with PVCs using a non-default storageClass
- variable: username
label: username
schema:
type: string
default: ""
- variable: logos
label: "App Logos Storage"
description: "Stores the Application Logos."
schema:
additional_attrs: true
type: dict
attrs:
- variable: type
label: Type of Storage
description: Sets the persistence type, Anything other than PVC could break rollback!
schema:
type: string
default: pvc
enum:
- value: pvc
description: PVC
- value: hostPath
description: Host Path
- value: emptyDir
description: emptyDir
- value: nfs
description: NFS Share
- variable: server
label: NFS Server
schema:
show_if: [["type", "=", "nfs"]]
type: string
default: ""
- variable: path
label: Path on NFS Server
schema:
show_if: [["type", "=", "nfs"]]
type: string
default: ""
- variable: password
label: password
schema:
type: string
default: ""
- variable: usernameInitiator
label: usernameInitiator
schema:
type: string
default: ""
- variable: passwordInitiator
label: passwordInitiator
schema:
type: string
default: ""
- variable: authDiscovery
label: authDiscovery
schema:
type: dict
additional_attrs: true
attrs:
- variable: username
label: username
schema:
type: string
default: ""
- variable: password
label: password
schema:
type: string
default: ""
- variable: usernameInitiator
label: usernameInitiator
schema:
type: string
default: ""
- variable: passwordInitiator
label: passwordInitiator
schema:
type: string
default: ""
- variable: autoPermissions
label: Automatic Permissions Configuration
description: Automatically set permissions
@ -833,7 +754,7 @@ questions:
type: string
default: "disabled"
enum:
- value: "disabled"
- value: disabled
description: disabled
- value: smb
description: smb
@ -947,6 +868,82 @@ questions:
show_if: [["type", "=", "nfs"]]
type: string
default: ""
- variable: iscsi
label: iSCSI Options
schema:
show_if: [["type", "=", "iscsi"]]
type: dict
additional_attrs: true
attrs:
- variable: targetPortal
label: targetPortal
schema:
type: string
required: true
default: ""
- variable: iqn
label: iqn
schema:
type: string
required: true
default: ""
- variable: lun
label: lun
schema:
type: int
default: 0
- variable: authSession
label: authSession
schema:
type: dict
additional_attrs: true
attrs:
- variable: username
label: username
schema:
type: string
default: ""
- variable: password
label: password
schema:
type: string
default: ""
- variable: usernameInitiator
label: usernameInitiator
schema:
type: string
default: ""
- variable: passwordInitiator
label: passwordInitiator
schema:
type: string
default: ""
- variable: authDiscovery
label: authDiscovery
schema:
type: dict
additional_attrs: true
attrs:
- variable: username
label: username
schema:
type: string
default: ""
- variable: password
label: password
schema:
type: string
default: ""
- variable: usernameInitiator
label: usernameInitiator
schema:
type: string
default: ""
- variable: passwordInitiator
label: passwordInitiator
schema:
type: string
default: ""
- variable: autoPermissions
label: Automatic Permissions Configuration
description: Automatically set permissions
@ -1195,6 +1192,46 @@ questions:
type: string
default: ""
required: true
- variable: integration
label: Integrations
description: Connect ingress with other charts
schema:
additional_attrs: true
type: dict
attrs:
- variable: homepage
label: Homepage
description: Connect ingress with Homepage
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: enabled
schema:
type: boolean
default: false
- variable: name
label: Name
description: defaults to chartname
schema:
type: string
default: ""
show_if: [["enabled", "=", true]]
- variable: description
label: Description
description: defaults to chart description
schema:
type: string
default: ""
show_if: [["enabled", "=", true]]
- variable: group
label: Group
schema:
type: string
required: true
default: "default"
show_if: [["enabled", "=", true]]
- variable: advanced
label: Show Advanced Settings
description: Advanced settings are not covered by TrueCharts Support
@ -1422,6 +1459,46 @@ questions:
type: string
show_if: [["certificateIssuer", "=", ""]]
default: ""
- variable: integration
label: Integrations
description: Connect ingress with other charts
schema:
additional_attrs: true
type: dict
attrs:
- variable: homepage
label: Homepage
description: Connect ingress with Homepage
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: enabled
schema:
type: boolean
default: false
- variable: name
label: Name
description: defaults to chartname
schema:
type: string
default: ""
show_if: [["enabled", "=", true]]
- variable: description
label: Description
description: defaults to chart description
schema:
type: string
default: ""
show_if: [["enabled", "=", true]]
- variable: group
label: Group
schema:
type: string
required: true
default: "default"
show_if: [["enabled", "=", true]]
- variable: entrypoint
label: Traefik Entrypoint
description: Entrypoint used by Traefik when using Traefik as Ingress Provider
@ -1456,6 +1533,7 @@ questions:
type: dict
attrs:
# Settings from questions.yaml get appended here on a per-app basis
- variable: runAsUser
label: "runAsUser"
description: "The UserID of the user running the application"

View File

@ -1,12 +0,0 @@
## [jellystat-0.0.14](https://github.com/truecharts/charts/compare/jellystat-0.0.13...jellystat-0.0.14) (2023-12-03)
### Chore
- bump everything to ensure catalog has latest versions
- fix annotations again
- update annotations
- cleanup chart.yaml and add min-max scale version

View File

@ -4,6 +4,15 @@
## [jellystat-0.0.15](https://github.com/truecharts/charts/compare/jellystat-0.0.14...jellystat-0.0.15) (2023-12-09)
### Chore
- update container image cyfershepard/jellystat to latest[@e0f01f9](https://github.com/e0f01f9) ([#15891](https://github.com/truecharts/charts/issues/15891))
## [jellystat-0.0.14](https://github.com/truecharts/charts/compare/jellystat-0.0.13...jellystat-0.0.14) (2023-12-03)
### Chore
@ -88,12 +97,3 @@
### Chore
- update helm general non-major ([#13386](https://github.com/truecharts/charts/issues/13386))
## [jellystat-0.0.4](https://github.com/truecharts/charts/compare/jellystat-0.0.3...jellystat-0.0.4) (2023-10-07)
### Chore
- update container image tccr.io/truecharts/jellystat to vlatest ([#13383](https://github.com/truecharts/charts/issues/13383))

View File

@ -1,16 +1,16 @@
kubeVersion: ">=1.24.0"
apiVersion: v2
name: jellystat
version: 0.0.14
version: 0.0.15
appVersion: latest
description: A free and open source Statistics App for Jellyfin.
home: https://truecharts.org/charts/stable/jellystat
icon: https://truecharts.org/img/hotlink-ok/chart-icons/jellystat.png
deprecated: false
sources:
- https://hub.docker.com/r/cyfershepard/jellystat
- https://github.com/CyferShepard/Jellystat
- https://github.com/truecharts/charts/tree/master/charts/stable/jellystat
- https://hub.docker.com/r/cyfershepard/jellystat
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@ -0,0 +1,9 @@
## [jellystat-0.0.15](https://github.com/truecharts/charts/compare/jellystat-0.0.14...jellystat-0.0.15) (2023-12-09)
### Chore
- update container image cyfershepard/jellystat to latest[@e0f01f9](https://github.com/e0f01f9) ([#15891](https://github.com/truecharts/charts/issues/15891))

View File

@ -1,7 +1,7 @@
image:
repository: cyfershepard/jellystat
pullPolicy: IfNotPresent
tag: latest@sha256:6b0eafe5fc5097204f16b275d2a908f738e1f7b6517b2a3ceb40fc4fdd06e021
tag: latest@sha256:e0f01f9d4c51a4a1d555171443ddf272e226654438ce459399f5619c1c50f925
securityContext:
container:
runAsNonRoot: false

View File

@ -227,6 +227,44 @@ questions:
schema:
type: string
required: true
- variable: imagePullSecretList
group: "General Settings"
label: "Image Pull Secrets"
schema:
type: list
default: []
items:
- variable: pullsecretentry
label: "Pull Secret"
schema:
type: dict
additional_attrs: true
attrs:
- variable: registry
label: "Registry"
schema:
type: string
required: true
default: "https://index.docker.io/v1/"
- variable: username
label: "Username"
schema:
type: string
required: true
default: ""
- variable: password
label: "Password"
schema:
type: string
required: true
default: ""
- variable: email
label: "Email"
schema:
type: string
required: true
default: ""
- variable: service
group: Networking and Services
label: Configure Service(s)
@ -547,6 +585,8 @@ questions:
description: emptyDir
- value: nfs
description: NFS Share
- value: iscsi
description: iSCSI Share
- variable: server
label: NFS Server
schema:
@ -559,6 +599,83 @@ questions:
show_if: [["type", "=", "nfs"]]
type: string
default: ""
- variable: iscsi
label: iSCSI Options
schema:
show_if: [["type", "=", "iscsi"]]
type: dict
additional_attrs: true
attrs:
- variable: targetPortal
label: targetPortal
schema:
type: string
required: true
default: ""
- variable: iqn
label: iqn
schema:
type: string
required: true
default: ""
- variable: lun
label: lun
schema:
type: int
default: 0
- variable: authSession
label: authSession
schema:
type: dict
additional_attrs: true
attrs:
- variable: username
label: username
schema:
type: string
default: ""
- variable: password
label: password
schema:
type: string
default: ""
- variable: usernameInitiator
label: usernameInitiator
schema:
type: string
default: ""
- variable: passwordInitiator
label: passwordInitiator
schema:
type: string
default: ""
- variable: authDiscovery
label: authDiscovery
schema:
type: dict
additional_attrs: true
attrs:
- variable: username
label: username
schema:
type: string
default: ""
- variable: password
label: password
schema:
type: string
default: ""
- variable: usernameInitiator
label: usernameInitiator
schema:
type: string
default: ""
- variable: passwordInitiator
label: passwordInitiator
schema:
type: string
default: ""
- variable: autoPermissions
label: Automatic Permissions Configuration
description: Automatically set permissions
@ -651,7 +768,7 @@ questions:
type: string
default: "disabled"
enum:
- value: "disabled"
- value: disabled
description: disabled
- value: smb
description: smb
@ -765,6 +882,82 @@ questions:
show_if: [["type", "=", "nfs"]]
type: string
default: ""
- variable: iscsi
label: iSCSI Options
schema:
show_if: [["type", "=", "iscsi"]]
type: dict
additional_attrs: true
attrs:
- variable: targetPortal
label: targetPortal
schema:
type: string
required: true
default: ""
- variable: iqn
label: iqn
schema:
type: string
required: true
default: ""
- variable: lun
label: lun
schema:
type: int
default: 0
- variable: authSession
label: authSession
schema:
type: dict
additional_attrs: true
attrs:
- variable: username
label: username
schema:
type: string
default: ""
- variable: password
label: password
schema:
type: string
default: ""
- variable: usernameInitiator
label: usernameInitiator
schema:
type: string
default: ""
- variable: passwordInitiator
label: passwordInitiator
schema:
type: string
default: ""
- variable: authDiscovery
label: authDiscovery
schema:
type: dict
additional_attrs: true
attrs:
- variable: username
label: username
schema:
type: string
default: ""
- variable: password
label: password
schema:
type: string
default: ""
- variable: usernameInitiator
label: usernameInitiator
schema:
type: string
default: ""
- variable: passwordInitiator
label: passwordInitiator
schema:
type: string
default: ""
- variable: autoPermissions
label: Automatic Permissions Configuration
description: Automatically set permissions
@ -1013,6 +1206,46 @@ questions:
type: string
default: ""
required: true
- variable: integration
label: Integrations
description: Connect ingress with other charts
schema:
additional_attrs: true
type: dict
attrs:
- variable: homepage
label: Homepage
description: Connect ingress with Homepage
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: enabled
schema:
type: boolean
default: false
- variable: name
label: Name
description: defaults to chartname
schema:
type: string
default: ""
show_if: [["enabled", "=", true]]
- variable: description
label: Description
description: defaults to chart description
schema:
type: string
default: ""
show_if: [["enabled", "=", true]]
- variable: group
label: Group
schema:
type: string
required: true
default: "default"
show_if: [["enabled", "=", true]]
- variable: advanced
label: Show Advanced Settings
description: Advanced settings are not covered by TrueCharts Support
@ -1240,6 +1473,46 @@ questions:
type: string
show_if: [["certificateIssuer", "=", ""]]
default: ""
- variable: integration
label: Integrations
description: Connect ingress with other charts
schema:
additional_attrs: true
type: dict
attrs:
- variable: homepage
label: Homepage
description: Connect ingress with Homepage
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: enabled
schema:
type: boolean
default: false
- variable: name
label: Name
description: defaults to chartname
schema:
type: string
default: ""
show_if: [["enabled", "=", true]]
- variable: description
label: Description
description: defaults to chart description
schema:
type: string
default: ""
show_if: [["enabled", "=", true]]
- variable: group
label: Group
schema:
type: string
required: true
default: "default"
show_if: [["enabled", "=", true]]
- variable: entrypoint
label: Traefik Entrypoint
description: Entrypoint used by Traefik when using Traefik as Ingress Provider

View File

@ -0,0 +1,99 @@
**Important:**
*for the complete changelog, please refer to the website*
## [lazylibrarian-15.0.35](https://github.com/truecharts/charts/compare/lazylibrarian-15.0.34...lazylibrarian-15.0.35) (2023-12-09)
### Chore
- update container image ghcr.io/linuxserver/lazylibrarian to latest[@1bfc8b8](https://github.com/1bfc8b8) ([#15896](https://github.com/truecharts/charts/issues/15896))
## [lazylibrarian-15.0.34](https://github.com/truecharts/charts/compare/lazylibrarian-15.0.33...lazylibrarian-15.0.34) (2023-12-03)
### Chore
- bump everything to ensure catalog has latest versions
## [lazylibrarian-15.0.33](https://github.com/truecharts/charts/compare/lazylibrarian-15.0.32...lazylibrarian-15.0.33) (2023-12-02)
### Chore
- fix annotations again
- update annotations
- cleanup chart.yaml and add min-max scale version
- update container image ghcr.io/linuxserver/lazylibrarian to latest[@17b2797](https://github.com/17b2797) ([#15620](https://github.com/truecharts/charts/issues/15620))
## [lazylibrarian-15.0.32](https://github.com/truecharts/charts/compare/lazylibrarian-15.0.31...lazylibrarian-15.0.32) (2023-11-25)
### Chore
- update container image ghcr.io/linuxserver/lazylibrarian to latest[@02a8f30](https://github.com/02a8f30) ([#15360](https://github.com/truecharts/charts/issues/15360))
## [lazylibrarian-15.0.31](https://github.com/truecharts/charts/compare/lazylibrarian-15.0.30...lazylibrarian-15.0.31) (2023-11-18)
### Fix
- update container image ghcr.io/linuxserver/lazylibrarian to latest ([#15081](https://github.com/truecharts/charts/issues/15081))
## [lazylibrarian-15.0.30](https://github.com/truecharts/charts/compare/lazylibrarian-15.0.29...lazylibrarian-15.0.30) (2023-11-17)
## [lazylibrarian-15.0.29](https://github.com/truecharts/charts/compare/lazylibrarian-15.0.28...lazylibrarian-15.0.29) (2023-11-15)
### Chore
- update container image tccr.io/truecharts/lazylibrarian to latest ([#14685](https://github.com/truecharts/charts/issues/14685))
## [lazylibrarian-15.0.28](https://github.com/truecharts/charts/compare/lazylibrarian-15.0.27...lazylibrarian-15.0.28) (2023-11-11)
### Chore
- update container image tccr.io/truecharts/lazylibrarian to latest ([#14580](https://github.com/truecharts/charts/issues/14580))
## [lazylibrarian-15.0.27](https://github.com/truecharts/charts/compare/lazylibrarian-15.0.26...lazylibrarian-15.0.27) (2023-11-08)
### Chore
- update helm general non-major ([#14465](https://github.com/truecharts/charts/issues/14465))
## [lazylibrarian-15.0.26](https://github.com/truecharts/charts/compare/lazylibrarian-15.0.25...lazylibrarian-15.0.26) (2023-11-08)
### Chore
- update helm general non-major ([#14454](https://github.com/truecharts/charts/issues/14454))

View File

@ -0,0 +1,37 @@
kubeVersion: ">=1.24.0"
apiVersion: v2
name: lazylibrarian
version: 15.0.35
appVersion: latest
description: Get all your books, like series with Sonarr...
home: https://truecharts.org/charts/stable/lazylibrarian
icon: https://truecharts.org/img/hotlink-ok/chart-icons/lazylibrarian.png
deprecated: false
sources:
- https://lazylibrarian.gitlab.io
- https://gitlab.com/LazyLibrarian/LazyLibrarian.git
- https://github.com/truecharts/charts/tree/master/charts/stable/lazylibrarian
- https://ghcr.io/linuxserver/lazylibrarian
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- lazylibrarian
- ebooks
dependencies:
- name: common
version: 14.3.5
repository: https://library-charts.truecharts.org
condition: ""
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,9 @@
## [lazylibrarian-15.0.35](https://github.com/truecharts/charts/compare/lazylibrarian-15.0.34...lazylibrarian-15.0.35) (2023-12-09)
### Chore
- update container image ghcr.io/linuxserver/lazylibrarian to latest[@1bfc8b8](https://github.com/1bfc8b8) ([#15896](https://github.com/truecharts/charts/issues/15896))

View File

@ -0,0 +1,8 @@
Get all your books, like series with Sonarr...
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/lazylibrarian](https://truecharts.org/charts/stable/lazylibrarian)
---
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,25 @@
image:
repository: ghcr.io/linuxserver/lazylibrarian
pullPolicy: IfNotPresent
tag: latest@sha256:1bfc8b8ceaba6d884b810e2496bb7dfce21b5cb98881fa2a0acdceaba338f0de
service:
main:
ports:
main:
port: 5299
targetPort: 5299
persistence:
config:
enabled: true
mountPath: "/config"
varrun:
enabled: true
portal:
open:
enabled: true
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0

View File

@ -100,6 +100,8 @@ questions:
additional_attrs: true
type: dict
attrs:
- 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..."
@ -226,6 +228,44 @@ questions:
schema:
type: string
required: true
- variable: imagePullSecretList
group: "General Settings"
label: "Image Pull Secrets"
schema:
type: list
default: []
items:
- variable: pullsecretentry
label: "Pull Secret"
schema:
type: dict
additional_attrs: true
attrs:
- variable: registry
label: "Registry"
schema:
type: string
required: true
default: "https://index.docker.io/v1/"
- variable: username
label: "Username"
schema:
type: string
required: true
default: ""
- variable: password
label: "Password"
schema:
type: string
required: true
default: ""
- variable: email
label: "Email"
schema:
type: string
required: true
default: ""
- variable: service
group: Networking and Services
label: Configure Service(s)
@ -281,7 +321,7 @@ questions:
description: "This port exposes the container port on the service"
schema:
type: int
default: 8337
default: 5299
required: true
- variable: serviceexpert
group: Networking and Services
@ -533,6 +573,8 @@ questions:
description: emptyDir
- value: nfs
description: NFS Share
- value: iscsi
description: iSCSI Share
- variable: server
label: NFS Server
schema:
@ -545,6 +587,83 @@ questions:
show_if: [["type", "=", "nfs"]]
type: string
default: ""
- variable: iscsi
label: iSCSI Options
schema:
show_if: [["type", "=", "iscsi"]]
type: dict
additional_attrs: true
attrs:
- variable: targetPortal
label: targetPortal
schema:
type: string
required: true
default: ""
- variable: iqn
label: iqn
schema:
type: string
required: true
default: ""
- variable: lun
label: lun
schema:
type: int
default: 0
- variable: authSession
label: authSession
schema:
type: dict
additional_attrs: true
attrs:
- variable: username
label: username
schema:
type: string
default: ""
- variable: password
label: password
schema:
type: string
default: ""
- variable: usernameInitiator
label: usernameInitiator
schema:
type: string
default: ""
- variable: passwordInitiator
label: passwordInitiator
schema:
type: string
default: ""
- variable: authDiscovery
label: authDiscovery
schema:
type: dict
additional_attrs: true
attrs:
- variable: username
label: username
schema:
type: string
default: ""
- variable: password
label: password
schema:
type: string
default: ""
- variable: usernameInitiator
label: usernameInitiator
schema:
type: string
default: ""
- variable: passwordInitiator
label: passwordInitiator
schema:
type: string
default: ""
- variable: autoPermissions
label: Automatic Permissions Configuration
description: Automatically set permissions
@ -637,7 +756,7 @@ questions:
type: string
default: "disabled"
enum:
- value: "disabled"
- value: disabled
description: disabled
- value: smb
description: smb
@ -751,6 +870,82 @@ questions:
show_if: [["type", "=", "nfs"]]
type: string
default: ""
- variable: iscsi
label: iSCSI Options
schema:
show_if: [["type", "=", "iscsi"]]
type: dict
additional_attrs: true
attrs:
- variable: targetPortal
label: targetPortal
schema:
type: string
required: true
default: ""
- variable: iqn
label: iqn
schema:
type: string
required: true
default: ""
- variable: lun
label: lun
schema:
type: int
default: 0
- variable: authSession
label: authSession
schema:
type: dict
additional_attrs: true
attrs:
- variable: username
label: username
schema:
type: string
default: ""
- variable: password
label: password
schema:
type: string
default: ""
- variable: usernameInitiator
label: usernameInitiator
schema:
type: string
default: ""
- variable: passwordInitiator
label: passwordInitiator
schema:
type: string
default: ""
- variable: authDiscovery
label: authDiscovery
schema:
type: dict
additional_attrs: true
attrs:
- variable: username
label: username
schema:
type: string
default: ""
- variable: password
label: password
schema:
type: string
default: ""
- variable: usernameInitiator
label: usernameInitiator
schema:
type: string
default: ""
- variable: passwordInitiator
label: passwordInitiator
schema:
type: string
default: ""
- variable: autoPermissions
label: Automatic Permissions Configuration
description: Automatically set permissions
@ -999,6 +1194,46 @@ questions:
type: string
default: ""
required: true
- variable: integration
label: Integrations
description: Connect ingress with other charts
schema:
additional_attrs: true
type: dict
attrs:
- variable: homepage
label: Homepage
description: Connect ingress with Homepage
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: enabled
schema:
type: boolean
default: false
- variable: name
label: Name
description: defaults to chartname
schema:
type: string
default: ""
show_if: [["enabled", "=", true]]
- variable: description
label: Description
description: defaults to chart description
schema:
type: string
default: ""
show_if: [["enabled", "=", true]]
- variable: group
label: Group
schema:
type: string
required: true
default: "default"
show_if: [["enabled", "=", true]]
- variable: advanced
label: Show Advanced Settings
description: Advanced settings are not covered by TrueCharts Support
@ -1226,6 +1461,46 @@ questions:
type: string
show_if: [["certificateIssuer", "=", ""]]
default: ""
- variable: integration
label: Integrations
description: Connect ingress with other charts
schema:
additional_attrs: true
type: dict
attrs:
- variable: homepage
label: Homepage
description: Connect ingress with Homepage
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: enabled
schema:
type: boolean
default: false
- variable: name
label: Name
description: defaults to chartname
schema:
type: string
default: ""
show_if: [["enabled", "=", true]]
- variable: description
label: Description
description: defaults to chart description
schema:
type: string
default: ""
show_if: [["enabled", "=", true]]
- variable: group
label: Group
schema:
type: string
required: true
default: "default"
show_if: [["enabled", "=", true]]
- variable: entrypoint
label: Traefik Entrypoint
description: Entrypoint used by Traefik when using Traefik as Ingress Provider

View File

@ -0,0 +1,99 @@
**Important:**
*for the complete changelog, please refer to the website*
## [lidarr-17.0.28](https://github.com/truecharts/charts/compare/lidarr-17.0.27...lidarr-17.0.28) (2023-12-09)
### Chore
- update container image ghcr.io/onedr0p/lidarr-develop to 2.0.5.3813[@b0da292](https://github.com/b0da292) ([#15897](https://github.com/truecharts/charts/issues/15897))
## [lidarr-17.0.27](https://github.com/truecharts/charts/compare/lidarr-17.0.26...lidarr-17.0.27) (2023-12-04)
### Chore
- update container image ghcr.io/onedr0p/lidarr-develop to v2.0.5.3813[@2d73ade](https://github.com/2d73ade) ([#15685](https://github.com/truecharts/charts/issues/15685))
## [lidarr-17.0.26](https://github.com/truecharts/charts/compare/lidarr-17.0.25...lidarr-17.0.26) (2023-12-03)
### Chore
- bump everything to ensure catalog has latest versions
- fix annotations again
- update annotations
- cleanup chart.yaml and add min-max scale version
## [lidarr-17.0.25](https://github.com/truecharts/charts/compare/lidarr-17.0.24...lidarr-17.0.25) (2023-11-26)
### Chore
- update container image ghcr.io/onedr0p/lidarr-develop to v2.0.4.3802[@bdd7420](https://github.com/bdd7420) ([#15380](https://github.com/truecharts/charts/issues/15380))
## [lidarr-17.0.24](https://github.com/truecharts/charts/compare/lidarr-17.0.23...lidarr-17.0.24) (2023-11-19)
### Fix
- update container image ghcr.io/onedr0p/lidarr-develop to v2.0.3.3791 ([#15103](https://github.com/truecharts/charts/issues/15103))
## [lidarr-17.0.23](https://github.com/truecharts/charts/compare/lidarr-17.0.22...lidarr-17.0.23) (2023-11-18)
## [lidarr-17.0.22](https://github.com/truecharts/charts/compare/lidarr-17.0.21...lidarr-17.0.22) (2023-11-17)
## [lidarr-17.0.21](https://github.com/truecharts/charts/compare/lidarr-17.0.20...lidarr-17.0.21) (2023-11-16)
## [lidarr-17.0.20](https://github.com/truecharts/charts/compare/lidarr-17.0.19...lidarr-17.0.20) (2023-11-08)
### Chore
- update helm general non-major ([#14465](https://github.com/truecharts/charts/issues/14465))
## [lidarr-17.0.19](https://github.com/truecharts/charts/compare/lidarr-17.0.18...lidarr-17.0.19) (2023-11-08)
### Chore
- update helm general non-major ([#14454](https://github.com/truecharts/charts/issues/14454))
## [lidarr-17.0.18](https://github.com/truecharts/charts/compare/lidarr-17.0.17...lidarr-17.0.18) (2023-11-05)
### Chore
- update helm general non-major ([#14365](https://github.com/truecharts/charts/issues/14365))

View File

@ -0,0 +1,37 @@
kubeVersion: ">=1.24.0"
apiVersion: v2
name: lidarr
version: 17.0.28
appVersion: 2.0.5.3813
description: Looks and smells like Sonarr but made for music
home: https://truecharts.org/charts/stable/lidarr
icon: https://truecharts.org/img/hotlink-ok/chart-icons/lidarr.png
deprecated: false
sources:
- https://github.com/Lidarr/Lidarr
- https://github.com/truecharts/charts/tree/master/charts/stable/lidarr
- https://ghcr.io/onedr0p/lidarr-develop
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- lidarr
- torrent
- usenet
dependencies:
- name: common
version: 14.3.5
repository: https://library-charts.truecharts.org
condition: ""
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,9 @@
## [lidarr-17.0.28](https://github.com/truecharts/charts/compare/lidarr-17.0.27...lidarr-17.0.28) (2023-12-09)
### Chore
- update container image ghcr.io/onedr0p/lidarr-develop to 2.0.5.3813[@b0da292](https://github.com/b0da292) ([#15897](https://github.com/truecharts/charts/issues/15897))

View File

@ -0,0 +1,8 @@
Looks and smells like Sonarr but made for music
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/lidarr](https://truecharts.org/charts/stable/lidarr)
---
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,109 @@
image:
repository: ghcr.io/onedr0p/lidarr-develop
pullPolicy: IfNotPresent
tag: 2.0.5.3813@sha256:b0da2927ae973864445e468dafe13297f958ee2b9cfb197bfabcb9979cfb6db7
exportarrImage:
repository: ghcr.io/onedr0p/exportarr
pullPolicy: IfNotPresent
tag: v1.6.0@sha256:b522e128509b766cf66f847190fccd225ff194dc76775fe6a215f2dd3010cac2
securityContext:
container:
readOnlyRootFilesystem: false
service:
main:
ports:
main:
port: 8686
metrics:
enabled: true
type: ClusterIP
targetSelector: exportarr
ports:
metrics:
enabled: true
port: 8687
targetSelector: exportarr
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
enabled: true
type: http
path: /ping
readiness:
enabled: true
type: http
path: /ping
startup:
enabled: true
type: http
path: /ping
env:
LIDARR__PORT: "{{ .Values.service.main.ports.main.port }}"
LIDARR__AUTHENTICATION_METHOD: ""
exportarr:
enabled: true
type: Deployment
strategy: RollingUpdate
replicas: 1
podSpec:
containers:
exportarr:
primary: true
enabled: true
imageSelector: exportarrImage
args:
- lidarr
probes:
liveness:
enabled: true
type: http
path: /healthz
port: "{{ .Values.service.metrics.ports.metrics.port }}"
readiness:
enabled: true
type: http
path: /healthz
port: "{{ .Values.service.metrics.ports.metrics.port }}"
startup:
enabled: true
type: http
path: /healthz
port: "{{ .Values.service.metrics.ports.metrics.port }}"
env:
INTERFACE: 0.0.0.0
PORT: "{{ .Values.service.metrics.ports.metrics.port }}"
URL: '{{ printf "http://%v:%v" (include "tc.v1.common.lib.chart.names.fullname" $) .Values.service.main.ports.main.port }}'
# additional metrics (slow)
# ENABLE_ADDITIONAL_METRICS: false
# enable gathering unknown queue items
# ENABLE_UNKNOWN_QUEUE_ITEMS: false
CONFIG: "/config/config.xml"
persistence:
config:
enabled: true
targetSelector:
main:
main:
mountPath: /config
exportarr:
exportarr:
mountPath: /config
readOnly: true
metrics:
main:
enabled: true
type: "servicemonitor"
endpoints:
- port: metrics
path: /metrics
targetSelector: metrics
prometheusRule:
enabled: false
portal:
open:
enabled: true
updated: true

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,11 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.v1.common.loader.init" . -}}
{{/* Disable [exportarr] if requested */}}
{{- if not .Values.metrics.main.enabled -}}
{{- $_ := set .Values.workload.exportarr "enabled" false -}}
{{- $_ := set .Values.service.metrics "enabled" false -}}
{{- end -}}
{{/* Render the templates */}}
{{- include "tc.v1.common.loader.apply" . -}}

View File

@ -1,12 +0,0 @@
## [linkding-6.1.15](https://github.com/truecharts/charts/compare/linkding-6.1.14...linkding-6.1.15) (2023-12-03)
### Chore
- bump everything to ensure catalog has latest versions
- fix annotations again
- update annotations
- cleanup chart.yaml and add min-max scale version

View File

@ -4,6 +4,15 @@
## [linkding-6.1.16](https://github.com/truecharts/charts/compare/linkding-6.1.15...linkding-6.1.16) (2023-12-09)
### Chore
- update container image sissbruecker/linkding to v1.23.1[@931ca3b](https://github.com/931ca3b) ([#15908](https://github.com/truecharts/charts/issues/15908))
## [linkding-6.1.15](https://github.com/truecharts/charts/compare/linkding-6.1.14...linkding-6.1.15) (2023-12-03)
### Chore
@ -88,12 +97,3 @@
### Chore
- Fix typo in categories and make them singular ([#13693](https://github.com/truecharts/charts/issues/13693))
- update helm general non-major ([#14094](https://github.com/truecharts/charts/issues/14094))
## [linkding-6.0.7](https://github.com/truecharts/charts/compare/linkding-6.0.6...linkding-6.0.7) (2023-10-27)
### Chore

View File

@ -1,8 +1,8 @@
kubeVersion: ">=1.24.0"
apiVersion: v2
name: linkding
version: 6.1.15
appVersion: 1.23.0
version: 6.1.16
appVersion: 1.23.1
description:
Linkding is a simple bookmark service that you can host yourself. It's
designed be to be minimal, fast and easy.

View File

@ -0,0 +1,9 @@
## [linkding-6.1.16](https://github.com/truecharts/charts/compare/linkding-6.1.15...linkding-6.1.16) (2023-12-09)
### Chore
- update container image sissbruecker/linkding to v1.23.1[@931ca3b](https://github.com/931ca3b) ([#15908](https://github.com/truecharts/charts/issues/15908))

Binary file not shown.

View File

@ -1,6 +1,6 @@
image:
repository: sissbruecker/linkding
tag: 1.23.0@sha256:71cc38610da4d74630af00c66fea07b4c0faf6316f7781d83a8296058a8e248e
tag: 1.23.1@sha256:931ca3bb706b93cbd23063fa117cffb446da1c3ea86c7f8c08cfe5815861c9bb
pullPolicy: IfNotPresent
service:
main:

View File

@ -273,6 +273,44 @@ questions:
schema:
type: string
required: true
- variable: imagePullSecretList
group: "General Settings"
label: "Image Pull Secrets"
schema:
type: list
default: []
items:
- variable: pullsecretentry
label: "Pull Secret"
schema:
type: dict
additional_attrs: true
attrs:
- variable: registry
label: "Registry"
schema:
type: string
required: true
default: "https://index.docker.io/v1/"
- variable: username
label: "Username"
schema:
type: string
required: true
default: ""
- variable: password
label: "Password"
schema:
type: string
required: true
default: ""
- variable: email
label: "Email"
schema:
type: string
required: true
default: ""
- variable: service
group: Networking and Services
label: Configure Service(s)
@ -580,6 +618,8 @@ questions:
description: emptyDir
- value: nfs
description: NFS Share
- value: iscsi
description: iSCSI Share
- variable: server
label: NFS Server
schema:
@ -592,6 +632,83 @@ questions:
show_if: [["type", "=", "nfs"]]
type: string
default: ""
- variable: iscsi
label: iSCSI Options
schema:
show_if: [["type", "=", "iscsi"]]
type: dict
additional_attrs: true
attrs:
- variable: targetPortal
label: targetPortal
schema:
type: string
required: true
default: ""
- variable: iqn
label: iqn
schema:
type: string
required: true
default: ""
- variable: lun
label: lun
schema:
type: int
default: 0
- variable: authSession
label: authSession
schema:
type: dict
additional_attrs: true
attrs:
- variable: username
label: username
schema:
type: string
default: ""
- variable: password
label: password
schema:
type: string
default: ""
- variable: usernameInitiator
label: usernameInitiator
schema:
type: string
default: ""
- variable: passwordInitiator
label: passwordInitiator
schema:
type: string
default: ""
- variable: authDiscovery
label: authDiscovery
schema:
type: dict
additional_attrs: true
attrs:
- variable: username
label: username
schema:
type: string
default: ""
- variable: password
label: password
schema:
type: string
default: ""
- variable: usernameInitiator
label: usernameInitiator
schema:
type: string
default: ""
- variable: passwordInitiator
label: passwordInitiator
schema:
type: string
default: ""
- variable: autoPermissions
label: Automatic Permissions Configuration
description: Automatically set permissions
@ -684,7 +801,7 @@ questions:
type: string
default: "disabled"
enum:
- value: "disabled"
- value: disabled
description: disabled
- value: smb
description: smb
@ -798,6 +915,82 @@ questions:
show_if: [["type", "=", "nfs"]]
type: string
default: ""
- variable: iscsi
label: iSCSI Options
schema:
show_if: [["type", "=", "iscsi"]]
type: dict
additional_attrs: true
attrs:
- variable: targetPortal
label: targetPortal
schema:
type: string
required: true
default: ""
- variable: iqn
label: iqn
schema:
type: string
required: true
default: ""
- variable: lun
label: lun
schema:
type: int
default: 0
- variable: authSession
label: authSession
schema:
type: dict
additional_attrs: true
attrs:
- variable: username
label: username
schema:
type: string
default: ""
- variable: password
label: password
schema:
type: string
default: ""
- variable: usernameInitiator
label: usernameInitiator
schema:
type: string
default: ""
- variable: passwordInitiator
label: passwordInitiator
schema:
type: string
default: ""
- variable: authDiscovery
label: authDiscovery
schema:
type: dict
additional_attrs: true
attrs:
- variable: username
label: username
schema:
type: string
default: ""
- variable: password
label: password
schema:
type: string
default: ""
- variable: usernameInitiator
label: usernameInitiator
schema:
type: string
default: ""
- variable: passwordInitiator
label: passwordInitiator
schema:
type: string
default: ""
- variable: autoPermissions
label: Automatic Permissions Configuration
description: Automatically set permissions
@ -1046,6 +1239,46 @@ questions:
type: string
default: ""
required: true
- variable: integration
label: Integrations
description: Connect ingress with other charts
schema:
additional_attrs: true
type: dict
attrs:
- variable: homepage
label: Homepage
description: Connect ingress with Homepage
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: enabled
schema:
type: boolean
default: false
- variable: name
label: Name
description: defaults to chartname
schema:
type: string
default: ""
show_if: [["enabled", "=", true]]
- variable: description
label: Description
description: defaults to chart description
schema:
type: string
default: ""
show_if: [["enabled", "=", true]]
- variable: group
label: Group
schema:
type: string
required: true
default: "default"
show_if: [["enabled", "=", true]]
- variable: advanced
label: Show Advanced Settings
description: Advanced settings are not covered by TrueCharts Support
@ -1273,6 +1506,46 @@ questions:
type: string
show_if: [["certificateIssuer", "=", ""]]
default: ""
- variable: integration
label: Integrations
description: Connect ingress with other charts
schema:
additional_attrs: true
type: dict
attrs:
- variable: homepage
label: Homepage
description: Connect ingress with Homepage
schema:
additional_attrs: true
type: dict
attrs:
- variable: enabled
label: enabled
schema:
type: boolean
default: false
- variable: name
label: Name
description: defaults to chartname
schema:
type: string
default: ""
show_if: [["enabled", "=", true]]
- variable: description
label: Description
description: defaults to chart description
schema:
type: string
default: ""
show_if: [["enabled", "=", true]]
- variable: group
label: Group
schema:
type: string
required: true
default: "default"
show_if: [["enabled", "=", true]]
- variable: entrypoint
label: Traefik Entrypoint
description: Entrypoint used by Traefik when using Traefik as Ingress Provider

View File

@ -0,0 +1,99 @@
**Important:**
*for the complete changelog, please refer to the website*
## [odoo-14.0.20](https://github.com/truecharts/charts/compare/odoo-14.0.19...odoo-14.0.20) (2023-12-09)
### Chore
- update container image docker.io/odoo to 17.0[@041b8da](https://github.com/041b8da) ([#15894](https://github.com/truecharts/charts/issues/15894))
## [odoo-14.0.19](https://github.com/truecharts/charts/compare/odoo-14.0.18...odoo-14.0.19) (2023-12-03)
### Chore
- bump everything to ensure catalog has latest versions
## [odoo-14.0.18](https://github.com/truecharts/charts/compare/odoo-14.0.17...odoo-14.0.18) (2023-12-02)
### Chore
- fix annotations again
- update annotations
- cleanup chart.yaml and add min-max scale version
- update container image docker.io/odoo to 17.0[@c5f6adf](https://github.com/c5f6adf) ([#15195](https://github.com/truecharts/charts/issues/15195))
## [odoo-14.0.17](https://github.com/truecharts/charts/compare/odoo-14.0.16...odoo-14.0.17) (2023-11-17)
## [odoo-14.0.16](https://github.com/truecharts/charts/compare/odoo-14.0.15...odoo-14.0.16) (2023-11-14)
### Chore
- update container image tccr.io/truecharts/odoo to v17.0.0 ([#14653](https://github.com/truecharts/charts/issues/14653))
## [odoo-14.0.15](https://github.com/truecharts/charts/compare/odoo-14.0.14...odoo-14.0.15) (2023-11-14)
### Chore
- update container image tccr.io/truecharts/odoo to v16.0.0 ([#14634](https://github.com/truecharts/charts/issues/14634))
## [odoo-14.0.14](https://github.com/truecharts/charts/compare/odoo-14.0.13...odoo-14.0.14) (2023-11-08)
### Chore
- update helm general non-major ([#14465](https://github.com/truecharts/charts/issues/14465))
## [odoo-14.0.13](https://github.com/truecharts/charts/compare/odoo-14.0.12...odoo-14.0.13) (2023-11-08)
### Chore
- update helm general non-major ([#14454](https://github.com/truecharts/charts/issues/14454))
## [odoo-14.0.12](https://github.com/truecharts/charts/compare/odoo-14.0.11...odoo-14.0.12) (2023-11-08)
### Chore
- update container image tccr.io/truecharts/odoo to v16.0.0 ([#14436](https://github.com/truecharts/charts/issues/14436))
## [odoo-14.0.11](https://github.com/truecharts/charts/compare/odoo-14.0.10...odoo-14.0.11) (2023-11-08)
### Chore
- update container image tccr.io/truecharts/odoo to v16.0.0 ([#14435](https://github.com/truecharts/charts/issues/14435))

View File

@ -0,0 +1,43 @@
kubeVersion: ">=1.24.0"
apiVersion: v2
name: odoo
version: 14.0.20
appVersion: "17.0"
description:
All-in-one business software. Beautiful. Easy-to-use. CRM, Accounting,
PM, HR, Procurement, Point of Sale, MRP, Marketing, etc.
home: https://truecharts.org/charts/stable/odoo
icon: https://truecharts.org/img/hotlink-ok/chart-icons/odoo.png
deprecated: false
sources:
- https://github.com/odoo/docker
- https://github.com/truecharts/charts/tree/master/charts/stable/odoo
- https://hub.docker.com/_/odoo
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- odoo
- crm
- pm
- hr
- accounting
- mrp
- marketing
dependencies:
- name: common
version: 14.3.5
repository: https://library-charts.truecharts.org
condition: ""
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: productivity
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable

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,9 @@
## [odoo-14.0.20](https://github.com/truecharts/charts/compare/odoo-14.0.19...odoo-14.0.20) (2023-12-09)
### Chore
- update container image docker.io/odoo to 17.0[@041b8da](https://github.com/041b8da) ([#15894](https://github.com/truecharts/charts/issues/15894))

View File

@ -0,0 +1,8 @@
All-in-one business software. Beautiful. Easy-to-use. CRM, Accounting, PM, HR, Procurement, Point of Sale, MRP, Marketing, etc.
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/odoo](https://truecharts.org/charts/stable/odoo)
---
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,92 @@
image:
repository: docker.io/odoo
pullPolicy: IfNotPresent
tag: 17.0@sha256:041b8daf52d73d9047675e1add4a30002ef3d177ef2681a01a5f0d3bbfaa3dd3
securityContext:
container:
readOnlyRootFilesystem: false
runAsUser: 101
runAsGroup: 101
service:
main:
ports:
main:
port: 8069
odoo:
additionalConf: []
workload:
main:
podSpec:
initContainers:
init-db:
type: install
enabled: true
imageSelector: "image"
env:
ODOO_RC: /etc/odoo/odoo.conf
command:
- /bin/bash
args:
- -c
- |
/usr/bin/odoo --config=/etc/odoo/odoo.conf \
--stop-after-init \
--without-demo=all \
--init=base
containers:
main:
probes:
liveness:
enabled: true
type: http
path: /web/health
readiness:
enabled: true
type: http
path: /web/health
startup:
enabled: true
type: http
path: /web/health
env:
ODOO_RC: /etc/odoo/odoo.conf
persistence:
odoo:
enabled: true
targetSelector:
main:
main:
mountPath: "/var/lib/odoo"
init-db:
mountPath: "/var/lib/odoo"
addons:
enabled: true
targetSelector:
main:
main:
mountPath: "/mnt/extra-addons"
init-db:
mountPath: "/mnt/extra-addons"
odoo-config:
enabled: true
type: configmap
objectName: odoo-config
targetSelector:
main:
main:
mountPath: /etc/odoo/odoo.conf
subPath: odoo.conf
readOnly: true
init-db:
mountPath: /etc/odoo/odoo.conf
subPath: odoo.conf
readOnly: true
# Enabled postgres
cnpg:
main:
enabled: true
user: odoo
database: odoo
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,52 @@
{{/* Define the configmap */}}
{{- define "odoo.configmaps" -}}
{{- $fullname := (include "tc.v1.common.lib.chart.names.fullname" $) -}}
{{- $admin := .Values.odoo.admin -}}
{{- $smtp := .Values.odoo.smtp -}}
{{- $mainPort := .Values.service.main.ports.main.port -}}
{{- $odooPath := .Values.persistence.odoo.targetSelector.main.main.mountPath -}}
{{- $addonsPath := .Values.persistence.addons.targetSelector.main.main.mountPath -}}
{{- $pgdb := .Values.cnpg.main.database -}}
{{- $pguser := .Values.cnpg.main.user -}}
{{- $pgpassword := .Values.cnpg.main.creds.password | trimAll "\"" -}}
{{- $pghost := .Values.cnpg.main.creds.host | trimAll "\"" -}}
{{/* xmlrpc* keys are deprecated and http* keys are used in their place */}}
{{- $reservedKeys := (list "data_dir" "addons_path" "http_enable" "http_interface"
"http_port" "xmlrpc" "xmlrpc_port" "xmlrpc_interface"
"db_port" "db_host" "db_name" "db_user" "db_sslmode"
"db_password") -}}
{{- $userKeys := list -}}
odoo-config:
enabled: true
data:
odoo.conf: |
[options]
; Paths
data_dir = {{ $odooPath }}
addons_path = {{ $addonsPath }}
; Network Details
http_enable = True
http_port = {{ $mainPort }}
; Database Details
db_port = 5432
db_host = {{ $pghost }}
db_name = {{ $pgdb }}
db_user = {{ $pguser }}
db_sslmode = disable
db_password = {{ $pgpassword }}
{{- range $opt := .Values.odoo.additionalConf -}}
{{- if (mustHas $opt.key $reservedKeys) -}}
{{- fail (printf "Odoo - Key [%v] is not allowed to be modified") -}}
{{- end -}}
{{- $userKeys = mustAppend $userKeys $opt.key -}}
{{- printf "%s = %s" $opt.key $opt.value | nindent 8 -}}
{{- end -}}
{{- if not (deepEqual $userKeys (uniq $userKeys)) -}}
{{- fail (printf "Odoo - Additional configuration keys must be unique, but got [%v]" (join ", " $userKeys)) -}}
{{- end -}}
{{- end -}}

View File

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

View File

View File

@ -0,0 +1,99 @@
**Important:**
*for the complete changelog, please refer to the website*
## [prowlarr-12.0.32](https://github.com/truecharts/charts/compare/prowlarr-12.0.31...prowlarr-12.0.32) (2023-12-09)
### Chore
- update container image ghcr.io/onedr0p/prowlarr-develop to 1.10.5.4116[@7640a36](https://github.com/7640a36) ([#15898](https://github.com/truecharts/charts/issues/15898))
## [prowlarr-12.0.31](https://github.com/truecharts/charts/compare/prowlarr-12.0.30...prowlarr-12.0.31) (2023-12-04)
### Chore
- update container image ghcr.io/onedr0p/prowlarr-develop to 1.10.5.4116[@0205e00](https://github.com/0205e00) ([#15649](https://github.com/truecharts/charts/issues/15649))
## [prowlarr-12.0.30](https://github.com/truecharts/charts/compare/prowlarr-12.0.29...prowlarr-12.0.30) (2023-12-03)
### Chore
- bump everything to ensure catalog has latest versions
- fix annotations again
- update annotations
## [prowlarr-12.0.29](https://github.com/truecharts/charts/compare/prowlarr-12.0.28...prowlarr-12.0.29) (2023-11-27)
### Chore
- update container image ghcr.io/onedr0p/prowlarr-develop to v1.10.5.4116[@5caf9ec](https://github.com/5caf9ec) ([#15417](https://github.com/truecharts/charts/issues/15417))
## [prowlarr-12.0.28](https://github.com/truecharts/charts/compare/prowlarr-12.0.27...prowlarr-12.0.28) (2023-11-19)
### Fix
- update container image ghcr.io/onedr0p/prowlarr-develop to v1.10.4.4088 ([#15104](https://github.com/truecharts/charts/issues/15104))
## [prowlarr-12.0.27](https://github.com/truecharts/charts/compare/prowlarr-12.0.26...prowlarr-12.0.27) (2023-11-18)
## [prowlarr-12.0.26](https://github.com/truecharts/charts/compare/prowlarr-12.0.25...prowlarr-12.0.26) (2023-11-17)
## [prowlarr-12.0.25](https://github.com/truecharts/charts/compare/prowlarr-12.0.24...prowlarr-12.0.25) (2023-11-16)
## [prowlarr-12.0.24](https://github.com/truecharts/charts/compare/prowlarr-12.0.23...prowlarr-12.0.24) (2023-11-12)
### Chore
- update container image tccr.io/truecharts/prowlarr to v1.10.2.4064 ([#14603](https://github.com/truecharts/charts/issues/14603))
## [prowlarr-12.0.23](https://github.com/truecharts/charts/compare/prowlarr-12.0.22...prowlarr-12.0.23) (2023-11-08)
### Chore
- update helm general non-major ([#14465](https://github.com/truecharts/charts/issues/14465))
## [prowlarr-12.0.22](https://github.com/truecharts/charts/compare/prowlarr-12.0.21...prowlarr-12.0.22) (2023-11-08)
### Chore
- update helm general non-major ([#14454](https://github.com/truecharts/charts/issues/14454))

View File

@ -0,0 +1,40 @@
kubeVersion: ">=1.24.0"
apiVersion: v2
name: prowlarr
version: 12.0.32
appVersion: 1.10.5.4116
description:
Indexer manager/proxy built on the popular arr net base stack to integrate
with your various PVR apps.
home: https://truecharts.org/charts/stable/prowlarr
icon: https://truecharts.org/img/hotlink-ok/chart-icons/prowlarr.png
deprecated: false
sources:
- https://github.com/k8s-at-home/container-images
- https://github.com/Prowlarr/Prowlarr
- https://github.com/truecharts/charts/tree/master/charts/stable/prowlarr
- https://ghcr.io/onedr0p/prowlarr-develop
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- prowlarr
- torrent
- usenet
dependencies:
- name: common
version: 14.3.5
repository: https://library-charts.truecharts.org
condition: ""
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,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,9 @@
## [prowlarr-12.0.32](https://github.com/truecharts/charts/compare/prowlarr-12.0.31...prowlarr-12.0.32) (2023-12-09)
### Chore
- update container image ghcr.io/onedr0p/prowlarr-develop to 1.10.5.4116[@7640a36](https://github.com/7640a36) ([#15898](https://github.com/truecharts/charts/issues/15898))

View File

@ -0,0 +1,8 @@
Indexer manager/proxy built on the popular arr net base stack to integrate with your various PVR apps.
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/prowlarr](https://truecharts.org/charts/stable/prowlarr)
---
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,100 @@
image:
repository: ghcr.io/onedr0p/prowlarr-develop
tag: 1.10.5.4116@sha256:7640a3607075b20a46a9f7712731363019a3cbe596c3ab30c1a2aa0b26faa77e
pullPolicy: IfNotPresent
exportarrImage:
repository: ghcr.io/onedr0p/exportarr
pullPolicy: IfNotPresent
tag: v1.6.0@sha256:b522e128509b766cf66f847190fccd225ff194dc76775fe6a215f2dd3010cac2
securityContext:
container:
readOnlyRootFilesystem: false
service:
main:
ports:
main:
port: 9696
metrics:
enabled: true
type: ClusterIP
targetSelector: exportarr
ports:
metrics:
enabled: true
port: 9697
targetSelector: exportarr
workload:
main:
podSpec:
containers:
main:
env:
PROWLARR__PORT: "{{ .Values.service.main.ports.main.port }}"
PROWLARR__AUTHENTICATION_METHOD: ""
exportarr:
enabled: true
type: Deployment
strategy: RollingUpdate
replicas: 1
podSpec:
containers:
exportarr:
primary: true
enabled: true
imageSelector: exportarrImage
args:
- prowlarr
probes:
liveness:
enabled: true
type: http
path: /healthz
port: "{{ .Values.service.metrics.ports.metrics.port }}"
readiness:
enabled: true
type: http
path: /healthz
port: "{{ .Values.service.metrics.ports.metrics.port }}"
startup:
enabled: true
type: http
path: /healthz
port: "{{ .Values.service.metrics.ports.metrics.port }}"
env:
INTERFACE: 0.0.0.0
PORT: "{{ .Values.service.metrics.ports.metrics.port }}"
URL: '{{ printf "http://%v:%v" (include "tc.v1.common.lib.chart.names.fullname" $) .Values.service.main.ports.main.port }}'
# additional metrics (slow)
# ENABLE_ADDITIONAL_METRICS: false
# enable gathering unknown queue items
# ENABLE_UNKNOWN_QUEUE_ITEMS: false
# enable backfill of historical metrics
# PROWLARR__BACKFILL: false
# Set a date from which to start the backfill
# PROWLARR__BACKFILL_SINCE_DATE: 1970-01-01
CONFIG: "/config/config.xml"
persistence:
config:
enabled: true
targetSelector:
main:
main:
mountPath: /config
exportarr:
exportarr:
mountPath: /config
readOnly: true
metrics:
main:
enabled: true
type: "servicemonitor"
endpoints:
- port: metrics
path: /metrics
targetSelector: metrics
prometheusRule:
enabled: false
portal:
open:
enabled: true
updated: 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,11 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.v1.common.loader.init" . -}}
{{/* Disable [exportarr] if requested */}}
{{- if not .Values.metrics.main.enabled -}}
{{- $_ := set .Values.workload.exportarr "enabled" false -}}
{{- $_ := set .Values.service.metrics "enabled" false -}}
{{- end -}}
{{/* Render the templates */}}
{{- include "tc.v1.common.loader.apply" . -}}

View File

View File

@ -0,0 +1,99 @@
**Important:**
*for the complete changelog, please refer to the website*
## [qbittorrent-16.1.6](https://github.com/truecharts/charts/compare/qbittorrent-16.1.5...qbittorrent-16.1.6) (2023-12-09)
### Chore
- update container image ghcr.io/onedr0p/qbittorrent to 4.6.2[@fedb621](https://github.com/fedb621) ([#15899](https://github.com/truecharts/charts/issues/15899))
## [qbittorrent-16.1.5](https://github.com/truecharts/charts/compare/qbittorrent-16.1.4...qbittorrent-16.1.5) (2023-12-04)
### Chore
- update container image ghcr.io/onedr0p/qbittorrent to 4.6.2[@ab8cc91](https://github.com/ab8cc91) ([#15650](https://github.com/truecharts/charts/issues/15650))
## [qbittorrent-16.1.4](https://github.com/truecharts/charts/compare/qbittorrent-16.1.3...qbittorrent-16.1.4) (2023-12-03)
### Chore
- bump everything to ensure catalog has latest versions
- update annotations
## [qbittorrent-16.1.3](https://github.com/truecharts/charts/compare/qbittorrent-16.1.2...qbittorrent-16.1.3) (2023-11-30)
### Chore
- cleanup with precommon, fix chmod and shebang
- update container image ghcr.io/onedr0p/qbittorrent to v4.6.2[@252b90e](https://github.com/252b90e) ([#15467](https://github.com/truecharts/charts/issues/15467))
### Docs
- add auto port forward docs ([#15348](https://github.com/truecharts/charts/issues/15348))
## [qbittorrent-16.1.2](https://github.com/truecharts/charts/compare/qbittorrent-16.1.1...qbittorrent-16.1.2) (2023-11-24)
### Chore
- update container image ghcr.io/onedr0p/qbittorrent to v4.6.1[@796f135](https://github.com/796f135) ([#15264](https://github.com/truecharts/charts/issues/15264))
## [qbittorrent-16.1.1](https://github.com/truecharts/charts/compare/qbittorrent-16.1.0...qbittorrent-16.1.1) (2023-11-23)
### Fix
- fix udp port ([#15298](https://github.com/truecharts/charts/issues/15298))
## [qbittorrent-16.1.0](https://github.com/truecharts/charts/compare/qbittorrent-16.0.12...qbittorrent-16.1.0) (2023-11-19)
### Feat
- add port forward sidecar ([#14577](https://github.com/truecharts/charts/issues/14577))
## [qbittorrent-16.0.12](https://github.com/truecharts/charts/compare/qbittorrent-16.0.11...qbittorrent-16.0.12) (2023-11-17)
## [qbittorrent-16.0.11](https://github.com/truecharts/charts/compare/qbittorrent-16.0.10...qbittorrent-16.0.11) (2023-11-08)
### Chore
- update helm general non-major ([#14465](https://github.com/truecharts/charts/issues/14465))
## [qbittorrent-16.0.10](https://github.com/truecharts/charts/compare/qbittorrent-16.0.9...qbittorrent-16.0.10) (2023-11-08)
### Chore
- update helm general non-major ([#14454](https://github.com/truecharts/charts/issues/14454))

View File

@ -0,0 +1,36 @@
kubeVersion: ">=1.24.0"
apiVersion: v2
name: qbittorrent
version: 16.1.6
appVersion: 4.6.2
description: qBittorrent is a cross-platform free and open-source BitTorrent client
home: https://truecharts.org/charts/stable/qbittorrent
icon: https://truecharts.org/img/hotlink-ok/chart-icons/qbittorrent.png
deprecated: false
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/qbittorrent
- https://ghcr.io/onedr0p/qbittorrent
- https://github.com/qbittorrent/qBittorrent
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- qbittorrent
- torrrent
dependencies:
- name: common
version: 14.3.5
repository: https://library-charts.truecharts.org
condition: ""
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,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,9 @@
## [qbittorrent-16.1.6](https://github.com/truecharts/charts/compare/qbittorrent-16.1.5...qbittorrent-16.1.6) (2023-12-09)
### Chore
- update container image ghcr.io/onedr0p/qbittorrent to 4.6.2[@fedb621](https://github.com/fedb621) ([#15899](https://github.com/truecharts/charts/issues/15899))

View File

@ -0,0 +1,8 @@
qBittorrent is a cross-platform free and open-source BitTorrent client
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/qbittorrent](https://truecharts.org/charts/stable/qbittorrent)
---
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,72 @@
image:
repository: ghcr.io/onedr0p/qbittorrent
pullPolicy: IfNotPresent
tag: 4.6.2@sha256:fedb62126c82ae0c7192e9052633411294a27e9c233613c03b0a8d168d160040
qbitportforwardImage:
repository: mjmeli/qbittorrent-port-forward-gluetun-server
pullPolicy: IfNotPresent
tag: latest@sha256:67d0d21ed792cf80716d4211e7162b6d375af5c12f3cf096c9032ad705dddaa8
qbitportforward:
enabled: false
QBT_USERNAME: "admin"
QBT_PASSWORD: "adminadmin"
service:
main:
ports:
main:
port: 10095
targetPort: 8080
torrent:
enabled: true
ports:
torrent:
enabled: true
port: 6881
protocol: tcp
torrentudp:
enabled: true
port: "{{ .Values.service.torrent.ports.torrent.port }}"
protocol: udp
gluetun:
enabled: true
type: ClusterIP
ports:
gluetun:
enabled: true
port: 8000
targetPort: 8000
protocol: http
workload:
qbitportforward:
enabled: true
type: Deployment
strategy: RollingUpdate
replicas: 1
podSpec:
containers:
qbitportforward:
primary: true
enabled: true
imageSelector: qbitportforwardImage
probes:
liveness:
enabled: false
readiness:
enabled: false
startup:
enabled: false
env:
QBT_USERNAME: "{{ .Values.qbitportforward.QBT_USERNAME }}"
QBT_PASSWORD: "{{ .Values.qbitportforward.QBT_PASSWORD }}"
QBT_ADDR: '{{ printf "http://%v:%v" (include "tc.v1.common.lib.chart.names.fullname" $) .Values.service.main.ports.main.port }}'
GTN_ADDR: '{{ printf "http://%v-gluetun:8000" (include "tc.v1.common.lib.chart.names.fullname" $) }}'
persistence:
config:
enabled: true
mountPath: "/config"
portal:
open:
enabled: true
securityContext:
container:
readOnlyRootFilesystem: false

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,25 @@
{{/* Define the configmap */}}
{{- define "qbittorrent.configmap" -}}
data:
{{- $bittorrentPort := "" -}}
{{- $bittorrentPort = .Values.service.torrent.ports.torrent.port -}}
{{- if $bittorrentPort }}
31-update-port: |-
#!/bin/bash
QBITTORRENT_CONFIGFILE="/config/qBittorrent/qBittorrent.conf"
INCOMING_PORT={{- $bittorrentPort }}
incoming_port_exist=$(cat ${QBITTORRENT_CONFIGFILE} | grep -m 1 'Connection\\PortRangeMin='${INCOMING_PORT})
if [[ -z "${incoming_port_exist}" ]]; then
incoming_exist=$(cat ${QBITTORRENT_CONFIGFILE} | grep -m 1 'Connection\\PortRangeMin')
if [[ ! -z "${incoming_exist}" ]]; then
# Get line number of Incoming
LINE_NUM=$(grep -Fn -m 1 'Connection\PortRangeMin' ${QBITTORRENT_CONFIGFILE} | cut -d: -f 1)
sed -i "${LINE_NUM}s@.*@Connection\\\PortRangeMin=${INCOMING_PORT}@" ${QBITTORRENT_CONFIGFILE}
else
echo "Connection\\PortRangeMin=${INCOMING_PORT}" >> ${QBITTORRENT_CONFIGFILE}
fi
fi
{{- end }}
{{- end -}}

View File

@ -0,0 +1,11 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.v1.common.loader.init" . }}
{{/* Disable [qbitportforward] if requested */}}
{{- if not .Values.qbitportforward.enabled -}}
{{- $_ := set .Values.workload.qbitportforward "enabled" false -}}
{{- $_ := set .Values.service.gluetun "enabled" false -}}
{{- end -}}
{{/* Render the templates */}}
{{ include "tc.v1.common.loader.apply" . }}

View File

View File

@ -0,0 +1,99 @@
**Important:**
*for the complete changelog, please refer to the website*
## [radarr-17.0.21](https://github.com/truecharts/charts/compare/radarr-17.0.20...radarr-17.0.21) (2023-12-09)
### Chore
- update container image ghcr.io/onedr0p/radarr to 5.1.3.8246[@e3eeb1d](https://github.com/e3eeb1d) ([#15900](https://github.com/truecharts/charts/issues/15900))
## [radarr-17.0.20](https://github.com/truecharts/charts/compare/radarr-17.0.19...radarr-17.0.20) (2023-12-04)
### Chore
- update container image ghcr.io/onedr0p/radarr to 5.1.3.8246[@cb042fe](https://github.com/cb042fe) ([#15651](https://github.com/truecharts/charts/issues/15651))
## [radarr-17.0.19](https://github.com/truecharts/charts/compare/radarr-17.0.18...radarr-17.0.19) (2023-12-03)
### Chore
- bump everything to ensure catalog has latest versions
- fix annotations again
- update annotations
- cleanup chart.yaml and add min-max scale version
## [radarr-17.0.18](https://github.com/truecharts/charts/compare/radarr-17.0.17...radarr-17.0.18) (2023-11-18)
## [radarr-17.0.17](https://github.com/truecharts/charts/compare/radarr-17.0.16...radarr-17.0.17) (2023-11-17)
## [radarr-17.0.16](https://github.com/truecharts/charts/compare/radarr-17.0.15...radarr-17.0.16) (2023-11-16)
## [radarr-17.0.15](https://github.com/truecharts/charts/compare/radarr-17.0.14...radarr-17.0.15) (2023-11-12)
### Chore
- update container image tccr.io/truecharts/radarr to v5.1.3.8246 ([#14599](https://github.com/truecharts/charts/issues/14599))
## [radarr-17.0.14](https://github.com/truecharts/charts/compare/radarr-17.0.13...radarr-17.0.14) (2023-11-08)
### Chore
- update helm general non-major ([#14465](https://github.com/truecharts/charts/issues/14465))
## [radarr-17.0.13](https://github.com/truecharts/charts/compare/radarr-17.0.12...radarr-17.0.13) (2023-11-08)
### Chore
- update helm general non-major ([#14454](https://github.com/truecharts/charts/issues/14454))
## [radarr-17.0.12](https://github.com/truecharts/charts/compare/radarr-17.0.11...radarr-17.0.12) (2023-11-05)
### Chore
- update helm general non-major ([#14365](https://github.com/truecharts/charts/issues/14365))
## [radarr-17.0.11](https://github.com/truecharts/charts/compare/radarr-17.0.10...radarr-17.0.11) (2023-11-03)
### Chore
- update helm general non-major ([#14287](https://github.com/truecharts/charts/issues/14287))

View File

@ -0,0 +1,37 @@
kubeVersion: ">=1.24.0"
apiVersion: v2
name: radarr
version: 17.0.21
appVersion: 5.1.3.8246
description: A fork of Sonarr to work with movies à la Couchpotato
home: https://truecharts.org/charts/stable/radarr
icon: https://truecharts.org/img/hotlink-ok/chart-icons/radarr.png
deprecated: false
sources:
- https://github.com/Radarr/Radarr
- https://github.com/truecharts/charts/tree/master/charts/stable/radarr
- https://ghcr.io/onedr0p/radarr
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- radarr
- torrent
- usenet
dependencies:
- name: common
version: 14.3.5
repository: https://library-charts.truecharts.org
condition: ""
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,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,9 @@
## [radarr-17.0.21](https://github.com/truecharts/charts/compare/radarr-17.0.20...radarr-17.0.21) (2023-12-09)
### Chore
- update container image ghcr.io/onedr0p/radarr to 5.1.3.8246[@e3eeb1d](https://github.com/e3eeb1d) ([#15900](https://github.com/truecharts/charts/issues/15900))

View File

@ -0,0 +1,8 @@
A fork of Sonarr to work with movies à la Couchpotato
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/radarr](https://truecharts.org/charts/stable/radarr)
---
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.

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