Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-11-14 18:24:55 +00:00
parent 00557481d0
commit ecb15cf58b
106 changed files with 1499 additions and 368 deletions

View File

@ -1,9 +0,0 @@
## [clickhouse-7.0.26](https://github.com/truecharts/charts/compare/clickhouse-7.0.25...clickhouse-7.0.26) (2023-11-11)
### Chore
- update container image tccr.io/truecharts/clickhouse to v23.10.3.5 ([#14554](https://github.com/truecharts/charts/issues/14554))

View File

@ -4,6 +4,15 @@
## [clickhouse-7.0.27](https://github.com/truecharts/charts/compare/clickhouse-7.0.26...clickhouse-7.0.27) (2023-11-14)
### Chore
- update helm chart common to 14.5.0 ([#14466](https://github.com/truecharts/charts/issues/14466))
## [clickhouse-7.0.26](https://github.com/truecharts/charts/compare/clickhouse-7.0.25...clickhouse-7.0.26) (2023-11-11)
### Chore
@ -88,12 +97,3 @@
- update container image tccr.io/truecharts/clickhouse to v23.9.3.12 ([#14172](https://github.com/truecharts/charts/issues/14172))
## [clickhouse-7.0.16](https://github.com/truecharts/charts/compare/clickhouse-7.0.15...clickhouse-7.0.16) (2023-10-29)
### Chore
- update helm chart common to 14.2.0 ([#14089](https://github.com/truecharts/charts/issues/14089))

View File

@ -3,7 +3,7 @@ appVersion: "23.10.3.5"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.3.5
version: 14.5.0
deprecated: false
description: ClickHouse is a column-oriented database management system (DBMS) for online analytical processing of queries (OLAP).
home: https://truecharts.org/charts/dependency/clickhouse
@ -22,7 +22,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/dependency/clickhouse
- https://clickhouse.com/
type: application
version: 7.0.26
version: 7.0.27
annotations:
truecharts.org/category: database
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,9 @@
## [clickhouse-7.0.27](https://github.com/truecharts/charts/compare/clickhouse-7.0.26...clickhouse-7.0.27) (2023-11-14)
### Chore
- update helm chart common to 14.5.0 ([#14466](https://github.com/truecharts/charts/issues/14466))

Binary file not shown.

View File

@ -218,34 +218,40 @@ questions:
schema:
type: string
required: true
- variable: mariadbDatabase
- variable: clickhouseDatabase
group: "App Configuration"
label: "Database Name"
schema:
type: string
default: "mydatabase"
default: "test"
required: true
- variable: mariadbUsername
- variable: clickhouseUsername
group: "App Configuration"
label: "Database User"
schema:
type: string
default: "mydatabaseuser"
default: "test"
required: true
- variable: mariadbPassword
- variable: clickhousePassword
group: "App Configuration"
label: "Database Password"
schema:
type: string
default: ""
required: true
- variable: mariadbRootPassword
private: true
- variable: clickhouseDefaultAccessManagement
group: "App Configuration"
label: "Root Password"
label: "Default Access Management"
schema:
type: string
default: ""
type: int
default: 0
required: true
enum:
- value: 0
description: "Disabled"
- value: 1
description: "Enabled"
- variable: service
group: Networking and Services
label: Configure Service(s)
@ -301,7 +307,7 @@ questions:
description: "This port exposes the container port on the service"
schema:
type: int
default: 3306
default: 8123
required: true
- variable: serviceexpert
group: Networking and Services
@ -535,8 +541,8 @@ questions:
type: dict
attrs:
- variable: data
label: "DB Storage"
description: "Stores the old Application Database."
label: Data Storage
description: Stores the ClickHouse Data
schema:
type: dict
hidden: true
@ -635,6 +641,487 @@ 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: config-server
label: Server Configuration Storage
description: Files with Server Settings Adjustments
schema:
type: dict
hidden: true
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: autoPermissions
label: Automatic Permissions Configuration
description: Automatically set permissions
schema:
show_if: [["type", "!=", "pvc"]]
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
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: config-users
label: Users Configuration Storage
description: Files with Users Settings Adjustments
schema:
type: dict
hidden: true
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: autoPermissions
label: Automatic Permissions Configuration
description: Automatically set permissions
schema:
show_if: [["type", "!=", "pvc"]]
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
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
@ -755,6 +1242,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: securityContext
group: Security and Permissions
label: Security Context
@ -781,7 +1361,7 @@ questions:
description: "The groupID of the user running the application"
schema:
type: int
default: 0
default: 568
# Settings from questions.yaml get appended here on a per-app basis
- variable: PUID
label: Process User ID - PUID

View File

@ -1,9 +0,0 @@
## [kube-state-metrics-3.0.39](https://github.com/truecharts/charts/compare/kube-state-metrics-3.0.38...kube-state-metrics-3.0.39) (2023-11-10)
### Chore
- update container image tccr.io/truecharts/kube-state-metrics to v2.10.1 ([#14516](https://github.com/truecharts/charts/issues/14516))

View File

@ -4,6 +4,15 @@
## [kube-state-metrics-3.0.40](https://github.com/truecharts/charts/compare/kube-state-metrics-3.0.39...kube-state-metrics-3.0.40) (2023-11-14)
### Chore
- update helm chart common to 14.5.0 ([#14466](https://github.com/truecharts/charts/issues/14466))
## [kube-state-metrics-3.0.39](https://github.com/truecharts/charts/compare/kube-state-metrics-3.0.38...kube-state-metrics-3.0.39) (2023-11-10)
### Chore
@ -88,12 +97,3 @@
- update helm chart common to 14.1.1 ([#14053](https://github.com/truecharts/charts/issues/14053))
## [kube-state-metrics-3.0.29](https://github.com/truecharts/charts/compare/kube-state-metrics-3.0.28...kube-state-metrics-3.0.29) (2023-10-28)
### Chore
- Fix typo in categories and make them singular ([#13693](https://github.com/truecharts/charts/issues/13693))
- update helm chart common to 14.1.0 ([#14049](https://github.com/truecharts/charts/issues/14049))

View File

@ -3,7 +3,7 @@ appVersion: "2.10.1"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.3.5
version: 14.5.0
deprecated: false
description: kube-state-metrics is a simple service that listens to the Kubernetes API server and generates metrics about the state of the objects.
home: https://truecharts.org/charts/dependency/kube-state-metrics
@ -21,7 +21,7 @@ name: kube-state-metrics
sources:
- https://github.com/truecharts/charts/tree/master/charts/dependency/kube-state-metrics
type: application
version: 3.0.39
version: 3.0.40
annotations:
truecharts.org/category: metrics
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,9 @@
## [kube-state-metrics-3.0.40](https://github.com/truecharts/charts/compare/kube-state-metrics-3.0.39...kube-state-metrics-3.0.40) (2023-11-14)
### Chore
- update helm chart common to 14.5.0 ([#14466](https://github.com/truecharts/charts/issues/14466))

View File

@ -666,6 +666,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

View File

@ -1,4 +0,0 @@
## [mariadb-9.0.40](https://github.com/truecharts/charts/compare/mariadb-9.0.39...mariadb-9.0.40) (2023-11-08)

View File

@ -4,6 +4,15 @@
## [mariadb-9.0.41](https://github.com/truecharts/charts/compare/mariadb-9.0.40...mariadb-9.0.41) (2023-11-14)
### Chore
- update helm chart common to 14.5.0 ([#14466](https://github.com/truecharts/charts/issues/14466))
## [mariadb-9.0.40](https://github.com/truecharts/charts/compare/mariadb-9.0.39...mariadb-9.0.40) (2023-11-08)
@ -88,12 +97,3 @@
- update container image tccr.io/truecharts/mariadb to v11.1.2 ([#13548](https://github.com/truecharts/charts/issues/13548))
## [mariadb-9.0.30](https://github.com/truecharts/charts/compare/mariadb-9.0.29...mariadb-9.0.30) (2023-10-15)
### Chore
- update helm chart common to 14.0.14 ([#13628](https://github.com/truecharts/charts/issues/13628))

View File

@ -3,7 +3,7 @@ appVersion: "11.1.2"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.3.5
version: 14.5.0
deprecated: false
description: Fast, reliable, scalable, and easy to use open-source relational database system.
home: https://truecharts.org/charts/dependency/mariadb
@ -25,7 +25,7 @@ sources:
- https://github.com/prometheus/mysqld_exporter
- https://mariadb.org
type: application
version: 9.0.40
version: 9.0.41
annotations:
truecharts.org/category: database
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,9 @@
## [mariadb-9.0.41](https://github.com/truecharts/charts/compare/mariadb-9.0.40...mariadb-9.0.41) (2023-11-14)
### Chore
- update helm chart common to 14.5.0 ([#14466](https://github.com/truecharts/charts/issues/14466))

Binary file not shown.

View File

@ -218,40 +218,34 @@ questions:
schema:
type: string
required: true
- variable: clickhouseDatabase
- variable: mariadbDatabase
group: "App Configuration"
label: "Database Name"
schema:
type: string
default: "test"
default: "mydatabase"
required: true
- variable: clickhouseUsername
- variable: mariadbUsername
group: "App Configuration"
label: "Database User"
schema:
type: string
default: "test"
default: "mydatabaseuser"
required: true
- variable: clickhousePassword
- variable: mariadbPassword
group: "App Configuration"
label: "Database Password"
schema:
type: string
default: ""
required: true
private: true
- variable: clickhouseDefaultAccessManagement
- variable: mariadbRootPassword
group: "App Configuration"
label: "Default Access Management"
label: "Root Password"
schema:
type: int
default: 0
type: string
default: ""
required: true
enum:
- value: 0
description: "Disabled"
- value: 1
description: "Enabled"
- variable: service
group: Networking and Services
label: Configure Service(s)
@ -307,7 +301,7 @@ questions:
description: "This port exposes the container port on the service"
schema:
type: int
default: 8123
default: 3306
required: true
- variable: serviceexpert
group: Networking and Services
@ -541,8 +535,8 @@ questions:
type: dict
attrs:
- variable: data
label: Data Storage
description: Stores the ClickHouse Data
label: "DB Storage"
description: "Stores the old Application Database."
schema:
type: dict
hidden: true
@ -641,208 +635,99 @@ questions:
show_if: [["type", "=", "pvc"]]
type: string
default: 256Gi
- variable: config-server
label: Server Configuration Storage
description: Files with Server Settings Adjustments
schema:
type: dict
hidden: true
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: autoPermissions
label: Automatic Permissions Configuration
description: Automatically set permissions
schema:
show_if: [["type", "!=", "pvc"]]
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
- 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: 256Gi
- variable: config-users
label: Users Configuration Storage
description: Files with Users Settings Adjustments
schema:
type: dict
hidden: true
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
- variable: static
label: 'Static Fixed PVC Bindings (Experimental)'
description: Link a PVC to a specific storage location
schema:
show_if: [["type", "=", "nfs"]]
type: string
default: ""
- variable: autoPermissions
label: Automatic Permissions Configuration
description: Automatically set permissions
schema:
show_if: [["type", "!=", "pvc"]]
show_if: [["type", "=", "pvc"]]
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
- variable: mode
label: mode
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
disabled: use normal dynamic PVCs
smb: connect to an SMB share
nfs: connect to an NFS share
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: ""
default: "disabled"
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
- 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: 256Gi
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
@ -963,6 +848,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: securityContext
group: Security and Permissions
label: Security Context
@ -989,7 +967,7 @@ questions:
description: "The groupID of the user running the application"
schema:
type: int
default: 568
default: 0
# Settings from questions.yaml get appended here on a per-app basis
- variable: PUID
label: Process User ID - PUID

View File

@ -1,4 +0,0 @@
## [memcached-8.0.41](https://github.com/truecharts/charts/compare/memcached-8.0.40...memcached-8.0.41) (2023-11-08)

View File

@ -4,6 +4,15 @@
## [memcached-8.0.42](https://github.com/truecharts/charts/compare/memcached-8.0.41...memcached-8.0.42) (2023-11-14)
### Chore
- update helm chart common to 14.5.0 ([#14466](https://github.com/truecharts/charts/issues/14466))
## [memcached-8.0.41](https://github.com/truecharts/charts/compare/memcached-8.0.40...memcached-8.0.41) (2023-11-08)
@ -88,12 +97,3 @@
- update container image tccr.io/truecharts/memcached to v1.6.22 ([#13724](https://github.com/truecharts/charts/issues/13724))
## [memcached-8.0.31](https://github.com/truecharts/charts/compare/memcached-8.0.30...memcached-8.0.31) (2023-10-15)
### Chore
- update helm chart common to 14.0.14 ([#13628](https://github.com/truecharts/charts/issues/13628))

View File

@ -3,7 +3,7 @@ appVersion: "1.6.22"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.3.5
version: 14.5.0
deprecated: false
description: Memcached is a memory-backed database caching solution
home: https://truecharts.org/charts/dependency/memcached
@ -23,7 +23,7 @@ sources:
- https://github.com/bitnami/bitnami-docker-memcached
- http://memcached.org/
type: application
version: 8.0.41
version: 8.0.42
annotations:
truecharts.org/category: database
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,9 @@
## [memcached-8.0.42](https://github.com/truecharts/charts/compare/memcached-8.0.41...memcached-8.0.42) (2023-11-14)
### Chore
- update helm chart common to 14.5.0 ([#14466](https://github.com/truecharts/charts/issues/14466))

Binary file not shown.

View File

@ -613,6 +613,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: securityContext
group: Security and Permissions
label: Security Context

View File

@ -1,9 +0,0 @@
## [mongodb-8.0.42](https://github.com/truecharts/charts/compare/mongodb-8.0.41...mongodb-8.0.42) (2023-11-14)
### Chore
- update container image tccr.io/truecharts/mongodb to v7.0.3 ([#14650](https://github.com/truecharts/charts/issues/14650))

View File

@ -4,6 +4,15 @@
## [mongodb-8.0.43](https://github.com/truecharts/charts/compare/mongodb-8.0.42...mongodb-8.0.43) (2023-11-14)
### Chore
- update helm chart common to 14.5.0 ([#14466](https://github.com/truecharts/charts/issues/14466))
## [mongodb-8.0.42](https://github.com/truecharts/charts/compare/mongodb-8.0.41...mongodb-8.0.42) (2023-11-14)
### Chore
@ -88,12 +97,3 @@
- update helm chart common to 14.2.1 ([#14176](https://github.com/truecharts/charts/issues/14176))
## [mongodb-8.0.32](https://github.com/truecharts/charts/compare/mongodb-8.0.31...mongodb-8.0.32) (2023-10-29)
### Chore
- update helm chart common to 14.2.0 ([#14089](https://github.com/truecharts/charts/issues/14089))

View File

@ -3,7 +3,7 @@ appVersion: "7.0.3"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.3.5
version: 14.5.0
deprecated: false
description: Fast, reliable, scalable, and easy to use open-source no-sql database system.
home: https://truecharts.org/charts/dependency/mongodb
@ -23,7 +23,7 @@ sources:
- https://github.com/bitnami/bitnami-docker-mongodb
- https://www.mongodb.com
type: application
version: 8.0.42
version: 8.0.43
annotations:
truecharts.org/category: database
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,9 @@
## [mongodb-8.0.43](https://github.com/truecharts/charts/compare/mongodb-8.0.42...mongodb-8.0.43) (2023-11-14)
### Chore
- update helm chart common to 14.5.0 ([#14466](https://github.com/truecharts/charts/issues/14466))

Binary file not shown.

View File

@ -1,9 +0,0 @@
## [node-exporter-3.0.41](https://github.com/truecharts/charts/compare/node-exporter-3.0.40...node-exporter-3.0.41) (2023-11-13)
### Chore
- update container image tccr.io/truecharts/node-exporter to v1.7.0 ([#14621](https://github.com/truecharts/charts/issues/14621))

View File

@ -4,6 +4,15 @@
## [node-exporter-3.0.42](https://github.com/truecharts/charts/compare/node-exporter-3.0.41...node-exporter-3.0.42) (2023-11-14)
### Chore
- update helm chart common to 14.5.0 ([#14466](https://github.com/truecharts/charts/issues/14466))
## [node-exporter-3.0.41](https://github.com/truecharts/charts/compare/node-exporter-3.0.40...node-exporter-3.0.41) (2023-11-13)
### Chore
@ -88,12 +97,3 @@
- update helm chart common to 14.1.1 ([#14053](https://github.com/truecharts/charts/issues/14053))
## [node-exporter-3.0.31](https://github.com/truecharts/charts/compare/node-exporter-3.0.30...node-exporter-3.0.31) (2023-10-28)
### Chore
- Fix typo in categories and make them singular ([#13693](https://github.com/truecharts/charts/issues/13693))
- update helm chart common to 14.1.0 ([#14049](https://github.com/truecharts/charts/issues/14049))

View File

@ -3,7 +3,7 @@ appVersion: "1.7.0"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.3.5
version: 14.5.0
deprecated: false
description: Prometheus exporter for hardware and OS metrics exposed by UNIX kernels, with pluggable metric collectors.
home: https://truecharts.org/charts/dependency/node-exporter
@ -21,7 +21,7 @@ name: node-exporter
sources:
- https://github.com/truecharts/charts/tree/master/charts/dependency/node-exporter
type: application
version: 3.0.41
version: 3.0.42
annotations:
truecharts.org/category: metrics
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,9 @@
## [node-exporter-3.0.42](https://github.com/truecharts/charts/compare/node-exporter-3.0.41...node-exporter-3.0.42) (2023-11-14)
### Chore
- update helm chart common to 14.5.0 ([#14466](https://github.com/truecharts/charts/issues/14466))

View File

@ -1,9 +0,0 @@
## [redis-8.0.45](https://github.com/truecharts/charts/compare/redis-8.0.44...redis-8.0.45) (2023-11-09)
### Chore
- update container image tccr.io/truecharts/redis to v7.2.3 ([#14500](https://github.com/truecharts/charts/issues/14500))

View File

@ -4,6 +4,15 @@
## [redis-8.0.46](https://github.com/truecharts/charts/compare/redis-8.0.45...redis-8.0.46) (2023-11-14)
### Chore
- update helm chart common to 14.5.0 ([#14466](https://github.com/truecharts/charts/issues/14466))
## [redis-8.0.45](https://github.com/truecharts/charts/compare/redis-8.0.44...redis-8.0.45) (2023-11-09)
### Chore
@ -88,12 +97,3 @@
- update helm chart common to 14.1.1 ([#14053](https://github.com/truecharts/charts/issues/14053))
## [redis-8.0.35](https://github.com/truecharts/charts/compare/redis-8.0.34...redis-8.0.35) (2023-10-28)
### Chore
- Fix typo in categories and make them singular ([#13693](https://github.com/truecharts/charts/issues/13693))
- update helm chart common to 14.1.0 ([#14049](https://github.com/truecharts/charts/issues/14049))

View File

@ -3,7 +3,7 @@ appVersion: "7.2.3"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.3.5
version: 14.5.0
deprecated: false
description: Open source, advanced key-value store.
home: https://truecharts.org/charts/dependency/redis
@ -23,7 +23,7 @@ sources:
- https://github.com/bitnami/bitnami-docker-redis
- http://redis.io/
type: application
version: 8.0.45
version: 8.0.46
annotations:
truecharts.org/category: database
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,9 @@
## [redis-8.0.46](https://github.com/truecharts/charts/compare/redis-8.0.45...redis-8.0.46) (2023-11-14)
### Chore
- update helm chart common to 14.5.0 ([#14466](https://github.com/truecharts/charts/issues/14466))

Binary file not shown.

View File

@ -611,6 +611,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
@ -731,6 +824,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: securityContext
group: Security and Permissions
label: Security Context

View File

@ -1,4 +0,0 @@
## [solr-6.0.41](https://github.com/truecharts/charts/compare/solr-6.0.40...solr-6.0.41) (2023-11-08)

View File

@ -4,6 +4,15 @@
## [solr-6.0.42](https://github.com/truecharts/charts/compare/solr-6.0.41...solr-6.0.42) (2023-11-14)
### Chore
- update helm chart common to 14.5.0 ([#14466](https://github.com/truecharts/charts/issues/14466))
## [solr-6.0.41](https://github.com/truecharts/charts/compare/solr-6.0.40...solr-6.0.41) (2023-11-08)
@ -88,12 +97,3 @@
- update container image tccr.io/truecharts/solr to v9.4.0 ([#13736](https://github.com/truecharts/charts/issues/13736))
## [solr-6.0.31](https://github.com/truecharts/charts/compare/solr-6.0.30...solr-6.0.31) (2023-10-15)
### Chore
- update helm chart common to 14.0.14 ([#13628](https://github.com/truecharts/charts/issues/13628))

View File

@ -3,7 +3,7 @@ appVersion: "9.4.0"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.3.5
version: 14.5.0
deprecated: false
description: Apache Solr
home: https://truecharts.org/charts/dependency/solr
@ -22,7 +22,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/dependency/solr
- https://github.com/apache/solr
type: application
version: 6.0.41
version: 6.0.42
annotations:
truecharts.org/category: search
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,9 @@
## [solr-6.0.42](https://github.com/truecharts/charts/compare/solr-6.0.41...solr-6.0.42) (2023-11-14)
### Chore
- update helm chart common to 14.5.0 ([#14466](https://github.com/truecharts/charts/issues/14466))

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