Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
142385ccb4
commit
81e7aed975
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [sickchill-7.0.22](https://github.com/truecharts/charts/compare/sickchill-7.0.21...sickchill-7.0.22) (2023-11-09)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/sickchill to v2023.6.27 ([#14477](https://github.com/truecharts/charts/issues/14477))
|
||||
|
||||
|
|
@ -4,6 +4,15 @@
|
|||
|
||||
|
||||
|
||||
## [sickchill-7.0.23](https://github.com/truecharts/charts/compare/sickchill-7.0.22...sickchill-7.0.23) (2023-11-16)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/sickchill to v2023.6.27 ([#14701](https://github.com/truecharts/charts/issues/14701))
|
||||
|
||||
|
||||
|
||||
|
||||
## [sickchill-7.0.22](https://github.com/truecharts/charts/compare/sickchill-7.0.21...sickchill-7.0.22) (2023-11-09)
|
||||
|
||||
### Chore
|
||||
|
@ -88,12 +97,3 @@
|
|||
|
||||
## [sickchill-7.0.13](https://github.com/truecharts/charts/compare/sickchill-7.0.12...sickchill-7.0.13) (2023-10-08)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/sickchill to v2023.6.27 ([#13399](https://github.com/truecharts/charts/issues/13399))
|
||||
|
||||
|
||||
|
||||
|
||||
## [sickchill-7.0.12](https://github.com/truecharts/charts/compare/sickchill-7.0.11...sickchill-7.0.12) (2023-10-07)
|
||||
|
|
@ -23,7 +23,7 @@ sources:
|
|||
- https://github.com/linuxserver/docker-sickchill
|
||||
- https://github.com/SickChill/SickChill
|
||||
type: application
|
||||
version: 7.0.22
|
||||
version: 7.0.23
|
||||
annotations:
|
||||
truecharts.org/category: media
|
||||
truecharts.org/SCALE-support: "true"
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [sickchill-7.0.23](https://github.com/truecharts/charts/compare/sickchill-7.0.22...sickchill-7.0.23) (2023-11-16)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/sickchill to v2023.6.27 ([#14701](https://github.com/truecharts/charts/issues/14701))
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/sickchill
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v2023.6.27@sha256:ae7a3163e432199f66d295ce71f3d1bee5f05a22aed3240e38a640d6778b30da
|
||||
tag: v2023.6.27@sha256:4d4cae5bb31084eab52c115db36abbd79c1b59f540ecf391dfa4fe406e2fbdd1
|
||||
service:
|
||||
main:
|
||||
ports:
|
|
@ -614,6 +614,99 @@ questions:
|
|||
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
|
||||
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"]]
|
||||
default: ""
|
||||
- variable: password
|
||||
label: Password
|
||||
description: connecting password
|
||||
schema:
|
||||
type: string
|
||||
show_if: [["mode", "=", "smb"]]
|
||||
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
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
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
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: persistenceList
|
||||
label: Additional App Storage
|
||||
group: Storage and Persistence
|
||||
|
@ -734,6 +827,99 @@ questions:
|
|||
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
|
||||
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"]]
|
||||
default: ""
|
||||
- variable: password
|
||||
label: Password
|
||||
description: connecting password
|
||||
schema:
|
||||
type: string
|
||||
show_if: [["mode", "=", "smb"]]
|
||||
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
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
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
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: ingress
|
||||
label: ""
|
||||
group: Ingress
|
||||
|
@ -776,7 +962,7 @@ questions:
|
|||
label: Paths
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
default: [{path: "/", pathType: "Prefix"}]
|
||||
items:
|
||||
- variable: pathEntry
|
||||
label: Host
|
Loading…
Reference in New Issue