Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-11-16 15:43:22 +00:00
parent 15e2e4adb4
commit 6e02bed012
12 changed files with 208 additions and 22 deletions

View File

@ -1,9 +0,0 @@
## [ispy-agent-dvr-6.0.23](https://github.com/truecharts/charts/compare/ispy-agent-dvr-6.0.22...ispy-agent-dvr-6.0.23) (2023-11-08)
### Chore
- update helm general non-major ([#14465](https://github.com/truecharts/charts/issues/14465))

View File

@ -4,6 +4,15 @@
## [ispy-agent-dvr-6.0.24](https://github.com/truecharts/charts/compare/ispy-agent-dvr-6.0.23...ispy-agent-dvr-6.0.24) (2023-11-16)
### Chore
- update container image tccr.io/truecharts/ispy-agent-dvr to v5.1.1.0 ([#14716](https://github.com/truecharts/charts/issues/14716))
## [ispy-agent-dvr-6.0.23](https://github.com/truecharts/charts/compare/ispy-agent-dvr-6.0.22...ispy-agent-dvr-6.0.23) (2023-11-08)
### Chore
@ -88,12 +97,3 @@
## [ispy-agent-dvr-6.0.14](https://github.com/truecharts/charts/compare/ispy-agent-dvr-6.0.13...ispy-agent-dvr-6.0.14) (2023-10-17)
### Chore
- update helm general non-major ([#13691](https://github.com/truecharts/charts/issues/13691))
## [ispy-agent-dvr-6.0.13](https://github.com/truecharts/charts/compare/ispy-agent-dvr-6.0.12...ispy-agent-dvr-6.0.13) (2023-10-17)

View File

@ -1,5 +1,5 @@
apiVersion: v2
appVersion: "5.1.0.0"
appVersion: "5.1.1.0"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
@ -20,7 +20,7 @@ name: ispy-agent-dvr
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/ispy-agent-dvr
- https://github.com/doitandbedone/ispyagentdvr-docker
version: 6.0.23
version: 6.0.24
annotations:
truecharts.org/category: security
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,9 @@
## [ispy-agent-dvr-6.0.24](https://github.com/truecharts/charts/compare/ispy-agent-dvr-6.0.23...ispy-agent-dvr-6.0.24) (2023-11-16)
### Chore
- update container image tccr.io/truecharts/ispy-agent-dvr to v5.1.1.0 ([#14716](https://github.com/truecharts/charts/issues/14716))

View File

@ -1,6 +1,6 @@
image:
repository: tccr.io/truecharts/ispy-agent-dvr
tag: v5.1.0.0@sha256:05addf2a0e03fde59cc5bcce0ee825752cfe28e2792f8e6cad18ac4d420f4f06
tag: v5.1.1.0@sha256:3cbf5bf90300628c9a20003863c6fe83fd17e6ca5211ec84ef298f050dd11732
pullPolicy: IfNotPresent
service:
main:

View File

@ -855,6 +855,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
@ -975,6 +1068,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
@ -1017,7 +1203,7 @@ questions:
label: Paths
schema:
type: list
default: []
default: [{path: "/", pathType: "Prefix"}]
items:
- variable: pathEntry
label: Host