Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-03-05 17:18:54 +00:00
parent bf23c6a0bb
commit 65c2584ca9
77 changed files with 2177 additions and 233 deletions

View File

@ -1,4 +0,0 @@
## [clickhouse-4.0.0](https://github.com/truecharts/charts/compare/clickhouse-3.0.21...clickhouse-4.0.0) (2023-03-01)

View File

@ -4,6 +4,16 @@
## [clickhouse-4.0.1](https://github.com/truecharts/charts/compare/clickhouse-4.0.0...clickhouse-4.0.1) (2023-03-05)
### Fix
- update dependency common linking ([#7746](https://github.com/truecharts/charts/issues/7746))
- disable manifestmanager
## [clickhouse-4.0.0](https://github.com/truecharts/charts/compare/clickhouse-3.0.21...clickhouse-4.0.0) (2023-03-01)
@ -87,13 +97,3 @@
## [clickhouse-3.0.12](https://github.com/truecharts/charts/compare/clickhouse-3.0.11...clickhouse-3.0.12) (2022-12-24)
### Chore
- update helm chart common to v11.1.0 ([#5686](https://github.com/truecharts/charts/issues/5686))
## [clickhouse-3.0.11](https://github.com/truecharts/charts/compare/clickhouse-3.0.10...clickhouse-3.0.11) (2022-12-17)

View File

@ -3,7 +3,7 @@ appVersion: "23.2.1.253"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 12.2.1
version: 12.2.13
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
@ -23,7 +23,7 @@ sources:
- https://hub.docker.com/r/clickhouse/clickhouse-server
- https://clickhouse.com/
type: application
version: 4.0.0
version: 4.0.1
annotations:
truecharts.org/catagories: |
- database

View File

@ -0,0 +1,10 @@
## [clickhouse-4.0.1](https://github.com/truecharts/charts/compare/clickhouse-4.0.0...clickhouse-4.0.1) (2023-03-05)
### Fix
- update dependency common linking ([#7746](https://github.com/truecharts/charts/issues/7746))
- disable manifestmanager

Binary file not shown.

View File

@ -17,7 +17,8 @@ workload:
CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT: "{{ .Values.clickhouseDefaultAccessManagement }}"
CLICKHOUSE_PASSWORD:
secretKeyRef:
name: "credentials"
expandObjectName: "{{ if .Values.clickhousePassword }}true{{ else }}false{{ end }}"
name: '{{ if .Values.clickhousePassword }}credentials{{ else if .Values.existingSecret }}{{ .Values.existingSecret }}{{ else }}{{ printf "%s-%s" .Release.Name "clickhousecreds" }}{{ end }}'
key: "clickhouse-password"
probes:
@ -59,8 +60,11 @@ volumeClaimTemplates:
clickhouseDatabase: "test"
clickhouseUsername: "test"
clickhousePassword: "testpass"
clickhouseDefaultAccessManagement: 0
# -- Secret or password
# One of these options is required, unless used as a dependency for another TrueCharts chart.
clickhousePassword: ""
existingSecret: ""
secret:
@ -73,5 +77,5 @@ portal:
open:
enabled: false
manifests:
manifestManager:
enabled: false

View File

@ -796,7 +796,7 @@ questions:
description: When supported by the container, this sets the User ID running the Application Process. Not supported by all Apps
schema:
type: int
show_if: [["runAsUser", "==", "0"]]
show_if: [["runAsUser", "=", "0"]]
default: 568
- variable: UMASK
label: UMASK
@ -921,15 +921,27 @@ questions:
schema:
type: string
default: "/dev/ttyACM0"
# Specify GPU configuration
- variable: scaleGPU
label: GPU Configuration
group: Resources and Devices
schema:
type: dict
$ref:
- "definitions/gpuConfiguration"
attrs: []
type: list
default: []
items:
- variable: scaleGPUEntry
label: GPU
schema:
additional_attrs: true
type: dict
attrs:
# Specify GPU configuration
- variable: gpu
label: Select GPU
schema:
type: dict
$ref:
- "definitions/gpuConfiguration"
attrs: []
# - variable: horizontalPodAutoscaler
# group: Advanced
# label: (Advanced) Horizontal Pod Autoscaler

View File

@ -1,4 +0,0 @@
## [mariadb-6.0.0](https://github.com/truecharts/charts/compare/mariadb-5.0.35...mariadb-6.0.0) (2023-03-01)

View File

@ -1,114 +0,0 @@
image:
repository: tccr.io/truecharts/mariadb
pullPolicy: IfNotPresent
tag: 10.11.2@sha256:fc01102eef1de92155b5097636ef738700c8bef1735f52a397b1505cbf455c0f
workload:
main:
replicas: 1
type: StatefulSet
strategy: RollingUpdate
podSpec:
containers:
main:
env:
MARIADB_PASSWORD:
secretKeyRef:
name: "credentials"
key: "mariadb-password"
MARIADB_ROOT_PASSWORD:
secretKeyRef:
name: "credentials"
key: "mariadb-root-password"
MARIADB_USER: "{{ .Values.mariadbUsername }}"
MARIADB_DATABASE: "{{ .Values.mariadbDatabase }}"
# -- Probe configuration
# -- [[ref]](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/)
# @default -- See below
probes:
# -- Liveness probe configuration
# @default -- See below
liveness:
# -- Enable the liveness probe
enabled: true
# -- Set this to `true` if you wish to specify your own livenessProbe
custom: true
# -- The spec field contains the values for the default livenessProbe.
# If you selected `custom: true`, this field holds the definition of the livenessProbe.
# @default -- See below
spec:
exec:
command:
- /bin/bash
- -ec
- "until /opt/bitnami/scripts/mariadb/healthcheck.sh; do sleep 2; done"
# -- Redainess probe configuration
# @default -- See below
readiness:
# -- Enable the readiness probe
enabled: true
# -- Set this to `true` if you wish to specify your own readinessProbe
custom: true
# -- The spec field contains the values for the default readinessProbe.
# If you selected `custom: true`, this field holds the definition of the readinessProbe.
# @default -- See below
spec:
exec:
command:
- /bin/bash
- -ec
- "until /opt/bitnami/scripts/mariadb/healthcheck.sh; do sleep 2; done"
# -- Startup probe configuration
# @default -- See below
startup:
# -- Enable the startup probe
enabled: true
custom: true
# -- The spec field contains the values for the default livenessProbe.
# If you selected `custom: true`, this field holds the definition of the livenessProbe.
# @default -- See below
spec:
exec:
command:
- /bin/bash
- -ec
- "until /opt/bitnami/scripts/mariadb/healthcheck.sh; do sleep 2; done"
service:
main:
ports:
main:
port: 3306
targetPort: 3306
securityContext:
container:
readOnlyRootFilesystem: false
runAsGroup: 0
secret:
credentials:
enabled: true
data:
mariadb-password: '{{ ( .Values.mariadbPassword | default "empty" ) }}'
mariadb-root-password: '{{ ( .Values.mariadbRootPassword | default "empty" ) }}'
volumeClaimTemplates:
data:
enabled: true
mountPath: "/bitnami/mariadb"
mariadbPassword: "testpass"
mariadbUsername: "test"
mariadbDatabase: "test"
mariadbRootPassword: "testroot"
existingSecret: ""
portal:
open:
enabled: false
manifests:
enabled: false

View File

@ -4,6 +4,16 @@
## [mariadb-6.0.1](https://github.com/truecharts/charts/compare/mariadb-6.0.0...mariadb-6.0.1) (2023-03-05)
### Fix
- update dependency common linking ([#7746](https://github.com/truecharts/charts/issues/7746))
- disable manifestmanager
## [mariadb-6.0.0](https://github.com/truecharts/charts/compare/mariadb-5.0.35...mariadb-6.0.0) (2023-03-01)
@ -87,13 +97,3 @@
- update container image tccr.io/truecharts/mariadb to 10.10.2
## [mariadb-5.0.26](https://github.com/truecharts/charts/compare/mariadb-5.0.25...mariadb-5.0.26) (2023-02-02)
### Fix
- remove non-link sources ([#6826](https://github.com/truecharts/charts/issues/6826))

View File

@ -3,7 +3,7 @@ appVersion: "10.11.2"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 12.2.1
version: 12.2.13
deprecated: false
description: Fast, reliable, scalable, and easy to use open-source relational database system.
home: https://truecharts.org/charts/dependency/mariadb
@ -26,7 +26,7 @@ sources:
- https://github.com/prometheus/mysqld_exporter
- https://mariadb.org
type: application
version: 6.0.0
version: 6.0.1
annotations:
truecharts.org/catagories: |
- database

View File

@ -0,0 +1,10 @@
## [mariadb-6.0.1](https://github.com/truecharts/charts/compare/mariadb-6.0.0...mariadb-6.0.1) (2023-03-05)
### Fix
- update dependency common linking ([#7746](https://github.com/truecharts/charts/issues/7746))
- disable manifestmanager

Binary file not shown.

View File

@ -0,0 +1,88 @@
image:
repository: tccr.io/truecharts/mariadb
pullPolicy: IfNotPresent
tag: 10.11.2@sha256:fc01102eef1de92155b5097636ef738700c8bef1735f52a397b1505cbf455c0f
workload:
main:
replicas: 1
type: StatefulSet
strategy: RollingUpdate
podSpec:
containers:
main:
env:
MARIADB_PASSWORD:
secretKeyRef:
expandObjectName: "{{ if .Values.mariadbPassword }}true{{ else }}false{{ end }}"
name: '{{ if .Values.mariadbPassword }}credentials{{ else if .Values.existingSecret }}{{ .Values.existingSecret }}{{ else }}{{ printf "%s-%s" .Release.Name "mariadbcreds" }}{{ end }}'
key: "mariadb-password"
MARIADB_ROOT_PASSWORD:
secretKeyRef:
expandObjectName: "{{ if .Values.mariadbPassword }}true{{ else }}false{{ end }}"
name: '{{ if .Values.mariadbPassword }}credentials{{ else if .Values.existingSecret }}{{ .Values.existingSecret }}{{ else }}{{ printf "%s-%s" .Release.Name "mariadbcreds" }}{{ end }}'
key: "mariadb-root-password"
MARIADB_USER: "{{ .Values.mariadbUsername }}"
MARIADB_DATABASE: "{{ .Values.mariadbDatabase }}"
probes:
liveness:
enabled: true
type: exec
command:
- /bin/bash
- -ec
- "until /opt/bitnami/scripts/mariadb/healthcheck.sh; do sleep 2; done"
readiness:
enabled: true
type: exec
command:
- /bin/bash
- -ec
- "until /opt/bitnami/scripts/mariadb/healthcheck.sh; do sleep 2; done"
startup:
enabled: true
type: exec
command:
- /bin/bash
- -ec
- "until /opt/bitnami/scripts/mariadb/healthcheck.sh; do sleep 2; done"
service:
main:
ports:
main:
port: 3306
targetPort: 3306
securityContext:
container:
readOnlyRootFilesystem: false
runAsGroup: 0
secret:
credentials:
enabled: true
data:
mariadb-password: '{{ ( .Values.mariadbPassword | default "empty" ) }}'
mariadb-root-password: '{{ ( .Values.mariadbRootPassword | default "empty" ) }}'
volumeClaimTemplates:
data:
enabled: true
mountPath: "/bitnami/mariadb"
mariadbUsername: "test"
mariadbDatabase: "test"
mariadbRootPassword: "testroot"
# -- Secret or password
# One of these options is required, unless used as a dependency for another TrueCharts chart.
mariadbPassword: ""
existingSecret: ""
portal:
open:
enabled: false
manifestManager:
enabled: false

View File

@ -650,7 +650,7 @@ questions:
description: When supported by the container, this sets the User ID running the Application Process. Not supported by all Apps
schema:
type: int
show_if: [["runAsUser", "==", "0"]]
show_if: [["runAsUser", "=", "0"]]
default: 568
- variable: UMASK
label: UMASK
@ -775,15 +775,27 @@ questions:
schema:
type: string
default: "/dev/ttyACM0"
# Specify GPU configuration
- variable: scaleGPU
label: GPU Configuration
group: Resources and Devices
schema:
type: dict
$ref:
- "definitions/gpuConfiguration"
attrs: []
type: list
default: []
items:
- variable: scaleGPUEntry
label: GPU
schema:
additional_attrs: true
type: dict
attrs:
# Specify GPU configuration
- variable: gpu
label: Select GPU
schema:
type: dict
$ref:
- "definitions/gpuConfiguration"
attrs: []
# - variable: horizontalPodAutoscaler
# group: Advanced
# label: (Advanced) Horizontal Pod Autoscaler

View File

@ -1,4 +0,0 @@
## [memcached-6.0.0](https://github.com/truecharts/charts/compare/memcached-5.0.31...memcached-6.0.0) (2023-03-01)

View File

@ -4,6 +4,16 @@
## [memcached-6.0.1](https://github.com/truecharts/charts/compare/memcached-6.0.0...memcached-6.0.1) (2023-03-05)
### Fix
- update dependency common linking ([#7746](https://github.com/truecharts/charts/issues/7746))
- disable manifestmanager
## [memcached-6.0.0](https://github.com/truecharts/charts/compare/memcached-5.0.31...memcached-6.0.0) (2023-03-01)
@ -87,13 +97,3 @@
- update container image tccr.io/truecharts/memcached to 1.6.18
## [memcached-5.0.22](https://github.com/truecharts/charts/compare/memcached-5.0.21...memcached-5.0.22) (2023-01-16)
### Chore
- update container image tccr.io/truecharts/memcached to v1.6.18

View File

@ -3,7 +3,7 @@ appVersion: "1.6.18"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 12.2.1
version: 12.2.13
deprecated: false
description: Memcached is a memory-backed database caching solution
home: https://truecharts.org/charts/dependency/memcached
@ -24,7 +24,7 @@ sources:
- https://github.com/bitnami/bitnami-docker-memcached
- http://memcached.org/
type: application
version: 6.0.0
version: 6.0.1
annotations:
truecharts.org/catagories: |
- database

View File

@ -0,0 +1,10 @@
## [memcached-6.0.1](https://github.com/truecharts/charts/compare/memcached-6.0.0...memcached-6.0.1) (2023-03-05)
### Fix
- update dependency common linking ([#7746](https://github.com/truecharts/charts/issues/7746))
- disable manifestmanager

Binary file not shown.

View File

@ -8,11 +8,12 @@ service:
ports:
main:
port: 11211
protocol: tcp
targetPort: 11211
portal:
open:
enabled: false
manifests:
manifestManager:
enabled: false

View File

@ -542,7 +542,7 @@ questions:
description: When supported by the container, this sets the User ID running the Application Process. Not supported by all Apps
schema:
type: int
show_if: [["runAsUser", "==", "0"]]
show_if: [["runAsUser", "=", "0"]]
default: 568
- variable: UMASK
label: UMASK
@ -667,15 +667,27 @@ questions:
schema:
type: string
default: "/dev/ttyACM0"
# Specify GPU configuration
- variable: scaleGPU
label: GPU Configuration
group: Resources and Devices
schema:
type: dict
$ref:
- "definitions/gpuConfiguration"
attrs: []
type: list
default: []
items:
- variable: scaleGPUEntry
label: GPU
schema:
additional_attrs: true
type: dict
attrs:
# Specify GPU configuration
- variable: gpu
label: Select GPU
schema:
type: dict
$ref:
- "definitions/gpuConfiguration"
attrs: []
# - variable: horizontalPodAutoscaler
# group: Advanced
# label: (Advanced) Horizontal Pod Autoscaler

View File

@ -1,4 +0,0 @@
## [mongodb-5.0.0](https://github.com/truecharts/charts/compare/mongodb-4.0.33...mongodb-5.0.0) (2023-03-01)

View File

@ -4,6 +4,16 @@
## [mongodb-5.0.1](https://github.com/truecharts/charts/compare/mongodb-5.0.0...mongodb-5.0.1) (2023-03-05)
### Fix
- update dependency common linking ([#7746](https://github.com/truecharts/charts/issues/7746))
- disable manifestmanager
## [mongodb-5.0.0](https://github.com/truecharts/charts/compare/mongodb-4.0.33...mongodb-5.0.0) (2023-03-01)
@ -87,13 +97,3 @@
- update container image tccr.io/truecharts/mongodb to 6.0.3
## [mongodb-4.0.24](https://github.com/truecharts/charts/compare/mongodb-4.0.23...mongodb-4.0.24) (2023-01-15)
### Fix
- don't run manifest Manager on most dependency apps. ([#6384](https://github.com/truecharts/charts/issues/6384))

View File

@ -3,7 +3,7 @@ appVersion: "6.0.4"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 12.2.1
version: 12.2.13
deprecated: false
description: Fast, reliable, scalable, and easy to use open-source no-sql database system.
home: https://truecharts.org/charts/dependency/mongodb
@ -24,7 +24,7 @@ sources:
- https://github.com/bitnami/bitnami-docker-mongodb
- https://www.mongodb.com
type: application
version: 5.0.0
version: 5.0.1
annotations:
truecharts.org/catagories: |
- database

View File

@ -0,0 +1,10 @@
## [mongodb-5.0.1](https://github.com/truecharts/charts/compare/mongodb-5.0.0...mongodb-5.0.1) (2023-03-05)
### Fix
- update dependency common linking ([#7746](https://github.com/truecharts/charts/issues/7746))
- disable manifestmanager

Binary file not shown.

View File

@ -16,11 +16,13 @@ workload:
MONGODB_DATABASE: "{{ .Values.mongodbDatabase }}"
MONGODB_PASSWORD:
secretKeyRef:
name: "credentials"
expandObjectName: "{{ if .Values.mongodbPassword }}true{{ else }}false{{ end }}"
name: '{{ if .Values.mongodbPassword }}credentials{{ else if .Values.existingSecret }}{{ .Values.existingSecret }}{{ else }}{{ printf "%s-%s" .Release.Name "mongodbcreds" }}{{ end }}'
key: "mongodb-password"
MONGODB_ROOT_PASSWORD:
secretKeyRef:
name: "credentials"
expandObjectName: "{{ if .Values.mongodbPassword }}true{{ else }}false{{ end }}"
name: '{{ if .Values.mongodbPassword }}credentials{{ else if .Values.existingSecret }}{{ .Values.existingSecret }}{{ else }}{{ printf "%s-%s" .Release.Name "mongodbcreds" }}{{ end }}'
key: "mongodb-root-password"
# -- Probe configuration
# -- [[ref]](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/)
@ -93,10 +95,13 @@ volumeClaimTemplates:
enabled: true
mountPath: "/bitnami/mongodb"
mongodbPassword: "testpass"
mongodbUsername: "test"
mongodbDatabase: "test"
mongodbRootPassword: "testroot"
# -- Secret or password
# One of these options is required, unless used as a dependency for another TrueCharts chart.
mongodbPassword: ""
existingSecret: ""
secret:
@ -110,5 +115,5 @@ portal:
open:
enabled: false
manifests:
manifestManager:
enabled: false

View File

@ -650,7 +650,7 @@ questions:
description: When supported by the container, this sets the User ID running the Application Process. Not supported by all Apps
schema:
type: int
show_if: [["runAsUser", "==", "0"]]
show_if: [["runAsUser", "=", "0"]]
default: 568
- variable: UMASK
label: UMASK
@ -775,15 +775,27 @@ questions:
schema:
type: string
default: "/dev/ttyACM0"
# Specify GPU configuration
- variable: scaleGPU
label: GPU Configuration
group: Resources and Devices
schema:
type: dict
$ref:
- "definitions/gpuConfiguration"
attrs: []
type: list
default: []
items:
- variable: scaleGPUEntry
label: GPU
schema:
additional_attrs: true
type: dict
attrs:
# Specify GPU configuration
- variable: gpu
label: Select GPU
schema:
type: dict
$ref:
- "definitions/gpuConfiguration"
attrs: []
# - variable: horizontalPodAutoscaler
# group: Advanced
# label: (Advanced) Horizontal Pod Autoscaler

View File

@ -1,4 +0,0 @@
## [redis-6.0.4](https://github.com/truecharts/charts/compare/redis-6.0.3...redis-6.0.4) (2023-03-02)

View File

@ -4,6 +4,15 @@
## [redis-6.0.5](https://github.com/truecharts/charts/compare/redis-6.0.4...redis-6.0.5) (2023-03-05)
### Fix
- update dependency common linking ([#7746](https://github.com/truecharts/charts/issues/7746))
## [redis-6.0.4](https://github.com/truecharts/charts/compare/redis-6.0.3...redis-6.0.4) (2023-03-02)
@ -88,12 +97,3 @@
## [redis-5.0.27](https://github.com/truecharts/charts/compare/redis-5.0.26...redis-5.0.27) (2023-01-18)
### Chore
- update container image tccr.io/truecharts/redis to 7.0.7
## [redis-5.0.26](https://github.com/truecharts/charts/compare/redis-5.0.25...redis-5.0.26) (2023-01-15)

View File

@ -3,7 +3,7 @@ appVersion: "7.0.8"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 12.2.9
version: 12.2.13
deprecated: false
description: Open source, advanced key-value store.
home: https://truecharts.org/charts/dependency/redis
@ -24,7 +24,7 @@ sources:
- https://github.com/bitnami/bitnami-docker-redis
- http://redis.io/
type: application
version: 6.0.4
version: 6.0.5
annotations:
truecharts.org/catagories: |
- database

View File

@ -0,0 +1,9 @@
## [redis-6.0.5](https://github.com/truecharts/charts/compare/redis-6.0.4...redis-6.0.5) (2023-03-05)
### Fix
- update dependency common linking ([#7746](https://github.com/truecharts/charts/issues/7746))

Binary file not shown.

View File

@ -17,8 +17,8 @@ workload:
REDIS_PORT: "{{ .Values.service.main.ports.main.targetPort }}"
REDIS_PASSWORD:
secretKeyRef:
expandObjectName: false
name: '{{ if .Values.redisPassword }}"credentials"{{ else if .Values.existingSecret }}{{ .Values.existingSecret }}{{ else }}{{ printf "%s-%s" .Release.Name "rediscreds" }}{{ end }}'
expandObjectName: "{{ if .Values.redisPassword }}true{{ else }}false{{ end }}"
name: '{{ if .Values.redisPassword }}credentials{{ else if .Values.existingSecret }}{{ .Values.existingSecret }}{{ else }}{{ printf "%s-%s" .Release.Name "rediscreds" }}{{ end }}'
key: "redis-password"
probes:
liveness:
@ -130,6 +130,8 @@ secret:
data:
redis-password: '{{ ( .Values.redisPassword | default "nothing" ) }}'
# -- Secret or password
# One of these options is required, unless used as a dependency for another TrueCharts chart.
redisPassword: ""
existingSecret: ""

View File

@ -629,7 +629,7 @@ questions:
description: When supported by the container, this sets the User ID running the Application Process. Not supported by all Apps
schema:
type: int
show_if: [["runAsUser", "==", "0"]]
show_if: [["runAsUser", "=", "0"]]
default: 568
- variable: UMASK
label: UMASK
@ -754,15 +754,27 @@ questions:
schema:
type: string
default: "/dev/ttyACM0"
# Specify GPU configuration
- variable: scaleGPU
label: GPU Configuration
group: Resources and Devices
schema:
type: dict
$ref:
- "definitions/gpuConfiguration"
attrs: []
type: list
default: []
items:
- variable: scaleGPUEntry
label: GPU
schema:
additional_attrs: true
type: dict
attrs:
# Specify GPU configuration
- variable: gpu
label: Select GPU
schema:
type: dict
$ref:
- "definitions/gpuConfiguration"
attrs: []
# - variable: horizontalPodAutoscaler
# group: Advanced
# label: (Advanced) Horizontal Pod Autoscaler

View File

@ -0,0 +1,99 @@
**Important:**
*for the complete changelog, please refer to the website*
## [solr-3.0.1](https://github.com/truecharts/charts/compare/solr-2.0.31...solr-3.0.1) (2023-03-05)
### Fix
- update dependency common linking ([#7746](https://github.com/truecharts/charts/issues/7746))
- disable manifestmanager
## [solr-2.0.31](https://github.com/truecharts/charts/compare/solr-2.0.30...solr-2.0.31) (2023-02-27)
### Chore
- update container image tccr.io/truecharts/solr to 9.1.1
## [solr-2.0.30](https://github.com/truecharts/charts/compare/solr-2.0.29...solr-2.0.30) (2023-02-10)
### Fix
- ensure new helm deps repo is used in latest releases as well.
## [solr-2.0.29](https://github.com/truecharts/charts/compare/solr-2.0.28...solr-2.0.29) (2023-02-06)
### Chore
- update container image tccr.io/truecharts/solr to 9.1.1
## [solr-2.0.28](https://github.com/truecharts/charts/compare/solr-2.0.27...solr-2.0.28) (2023-02-03)
### Chore
- update container image tccr.io/truecharts/solr to 9.1.1
## [solr-2.0.27](https://github.com/truecharts/charts/compare/solr-2.0.26...solr-2.0.27) (2023-02-02)
### Fix
- remove non-link sources ([#6826](https://github.com/truecharts/charts/issues/6826))
## [solr-2.0.26](https://github.com/truecharts/charts/compare/solr-2.0.25...solr-2.0.26) (2023-01-31)
### Chore
- update container image tccr.io/truecharts/solr to v9.1.1
## [solr-2.0.25](https://github.com/truecharts/charts/compare/solr-2.0.24...solr-2.0.25) (2023-01-31)
### Chore
- update container image tccr.io/truecharts/solr to v
## [solr-2.0.24](https://github.com/truecharts/charts/compare/solr-2.0.23...solr-2.0.24) (2023-01-24)
### Chore
- update container image tccr.io/truecharts/solr to 9.1.0
## [solr-2.0.23](https://github.com/truecharts/charts/compare/solr-2.0.22...solr-2.0.23) (2023-01-18)
### Chore
- update container image tccr.io/truecharts/solr to 9.1.0
## [solr-2.0.22](https://github.com/truecharts/charts/compare/solr-2.0.21...solr-2.0.22) (2023-01-15)

View File

@ -0,0 +1,31 @@
apiVersion: v2
appVersion: "9.1.1"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 12.2.13
deprecated: false
description: Apache Solr
home: https://truecharts.org/charts/dependency/solr
icon: https://truecharts.org/img/hotlink-ok/chart-icons/solr.png
keywords:
- solr
- apache
- search
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: solr
sources:
- https://github.com/truecharts/charts/tree/master/charts/dependency/solr
- https://hub.docker.com/r/bitnami/solr
- https://github.com/apache/solr
type: application
version: 3.0.1
annotations:
truecharts.org/catagories: |
- search
truecharts.org/SCALE-support: "true"
truecharts.org/grade: U

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/dependency/)
**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%20Apps/Important-MUST-READ).
- 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,10 @@
## [solr-3.0.1](https://github.com/truecharts/charts/compare/solr-2.0.31...solr-3.0.1) (2023-03-05)
### Fix
- update dependency common linking ([#7746](https://github.com/truecharts/charts/issues/7746))
- disable manifestmanager

View File

@ -0,0 +1,8 @@
Apache Solr
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/dependency/solr](https://truecharts.org/charts/dependency/solr)
---
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,135 @@
image:
repository: tccr.io/truecharts/solr
pullPolicy: IfNotPresent
tag: 9.1.1@sha256:4ac9d6e8120321349f0a3e5dbaff796192a9623de8fb164adf9f42de952479f1
workload:
main:
type: StatefulSet
replicas: 1
strategy: RollingUpdate
podSpec:
containers:
main:
env:
SOLR_CORES: "{{ .Values.solrCores }}"
SOLR_ENABLE_AUTHENTICATION: "{{ .Values.solrEnableAuthentication }}"
SOLR_ADMIN_USERNAME: "{{ .Values.solrUsername }}"
SOLR_OPTS: "{{ .Values.solrOpts }}"
SOLR_ADMIN_PASSWORD:
secretKeyRef:
expandObjectName: "{{ if .Values.solrPassword }}true{{ else }}false{{ end }}"
name: '{{ if .Values.solrPassword }}credentials{{ else if .Values.existingSecret }}{{ .Values.existingSecret }}{{ else }}{{ printf "%s-%s" .Release.Name "solrcreds" }}{{ end }}'
key: "solr-password"
# -- Probe configuration
# -- [[ref]](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/)
# @default -- See below
probes:
# -- Liveness probe configuration
# @default -- See below
liveness:
# -- Enable the liveness probe
enabled: true
# -- Set this to `true` if you wish to specify your own livenessProbe
custom: true
# -- The spec field contains the values for the default livenessProbe.
# If you selected `custom: true`, this field holds the definition of the livenessProbe.
# @default -- See below
spec:
exec:
command:
- /bin/bash
- -ec
- |
if [ "$SOLR_ENABLE_AUTHENTICATION" == "yes" ]; then
until curl --fail --user "${SOLR_ADMIN_USERNAME}":"${SOLR_ADMIN_PASSWORD}" localhost:8983/solr/"${SOLR_CORES}"/admin/ping; do sleep 2; done
else
until curl --fail localhost:8983/solr/"${SOLR_CORES}"/admin/ping; do sleep 2; done
fi;
# -- Redainess probe configuration
# @default -- See below
readiness:
# -- Enable the readiness probe
enabled: true
# -- Set this to `true` if you wish to specify your own readinessProbe
custom: true
# -- The spec field contains the values for the default readinessProbe.
# If you selected `custom: true`, this field holds the definition of the readinessProbe.
# @default -- See below
spec:
exec:
command:
- /bin/bash
- -ec
- |
if [ "$SOLR_ENABLE_AUTHENTICATION" == "yes" ]; then
until curl --fail --user "${SOLR_ADMIN_USERNAME}":"${SOLR_ADMIN_PASSWORD}" localhost:8983/solr/"${SOLR_CORES}"/admin/ping; do sleep 2; done
else
until curl --fail localhost:8983/solr/"${SOLR_CORES}"/admin/ping; do sleep 2; done
fi;
# -- Startup probe configuration
# @default -- See below
startup:
# -- Enable the startup probe
enabled: true
custom: true
# -- The spec field contains the values for the default livenessProbe.
# If you selected `custom: true`, this field holds the definition of the livenessProbe.
# @default -- See below
spec:
exec:
command:
- /bin/bash
- -ec
- |
if [ "$SOLR_ENABLE_AUTHENTICATION" == "yes" ]; then
until curl --fail --user "${SOLR_ADMIN_USERNAME}":"${SOLR_ADMIN_PASSWORD}" localhost:8983/solr/"${SOLR_CORES}"/admin/ping; do sleep 2; done
else
until curl --fail localhost:8983/solr/"${SOLR_CORES}"/admin/ping; do sleep 2; done
fi;
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 1001
runAsGroup: 0
service:
main:
ports:
main:
port: 8983
targetPort: 8983
volumeClaimTemplates:
db:
enabled: true
mountPath: "/bitnami/solr"
# Currently only single core is supported, with multiple cores, probes will fail.
solrCores: "testcore"
solrEnableAuthentication: "yes"
solrUsername: "test"
# Used to pass a comma separated list of optional options like '-XX:G1HeapRegionSize=8m'
solrOpts: ""
# -- Secret or password
# One of these options is required, unless used as a dependency for another TrueCharts chart.
existingSecret: ""
solrPassword: ""
secret:
credentials:
enabled: true
data:
solr-password: '{{ ( .Values.solrPassword | default "empty" ) }}'
portal:
open:
enabled: true
manifestManager:
enabled: 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,2 @@
{{ include "tc.v1.common.loader.all" . }}

View File