Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-11-16 12:42:41 +00:00
parent 74b7304972
commit e5450c7ef7
12 changed files with 206 additions and 20 deletions

View File

@ -1,9 +0,0 @@
## [minio-7.0.30](https://github.com/truecharts/charts/compare/minio-7.0.29...minio-7.0.30) (2023-11-12)
### Chore
- update container image tccr.io/truecharts/minio to latest ([#14590](https://github.com/truecharts/charts/issues/14590))

View File

@ -4,6 +4,15 @@
## [minio-7.0.31](https://github.com/truecharts/charts/compare/minio-7.0.30...minio-7.0.31) (2023-11-16)
### Chore
- update container image tccr.io/truecharts/minio to latest ([#14709](https://github.com/truecharts/charts/issues/14709))
## [minio-7.0.30](https://github.com/truecharts/charts/compare/minio-7.0.29...minio-7.0.30) (2023-11-12) ## [minio-7.0.30](https://github.com/truecharts/charts/compare/minio-7.0.29...minio-7.0.30) (2023-11-12)
### Chore ### Chore
@ -88,12 +97,3 @@
## [minio-7.0.21](https://github.com/truecharts/charts/compare/minio-7.0.20...minio-7.0.21) (2023-10-25) ## [minio-7.0.21](https://github.com/truecharts/charts/compare/minio-7.0.20...minio-7.0.21) (2023-10-25)
### Chore
- update container image tccr.io/truecharts/minio to latest ([#13962](https://github.com/truecharts/charts/issues/13962))
## [minio-7.0.20](https://github.com/truecharts/charts/compare/minio-7.0.19...minio-7.0.20) (2023-10-24)

View File

@ -20,7 +20,7 @@ name: minio
sources: sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/minio - https://github.com/truecharts/charts/tree/master/charts/stable/minio
- https://github.com/minio/minio - https://github.com/minio/minio
version: 7.0.30 version: 7.0.31
annotations: annotations:
truecharts.org/category: media truecharts.org/category: media
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,9 @@
## [minio-7.0.31](https://github.com/truecharts/charts/compare/minio-7.0.30...minio-7.0.31) (2023-11-16)
### Chore
- update container image tccr.io/truecharts/minio to latest ([#14709](https://github.com/truecharts/charts/issues/14709))

View File

@ -1,6 +1,6 @@
image: image:
repository: tccr.io/truecharts/minio repository: tccr.io/truecharts/minio
tag: latest@sha256:5f8eab4d6bd1285be6247865997a0847689bef67b755318f744a870f816c784d tag: latest@sha256:a91521cfa33dfbfb980e0f3bd2cbdd089eaee1bc379e0c74cd8fe1ac3dcef9d4
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
service: service:
main: main:

View File

@ -693,6 +693,99 @@ questions:
show_if: [["type", "=", "pvc"]] show_if: [["type", "=", "pvc"]]
type: string type: string
default: 256Gi 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 - variable: persistenceList
label: Additional App Storage label: Additional App Storage
group: Storage and Persistence group: Storage and Persistence
@ -813,6 +906,99 @@ questions:
show_if: [["type", "=", "pvc"]] show_if: [["type", "=", "pvc"]]
type: string type: string
default: 256Gi 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 - variable: ingress
label: "" label: ""
group: Ingress group: Ingress