Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
4c2ad5bcd8
commit
86e2b06505
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [redis-6.0.1](https://github.com/truecharts/charts/compare/redis-6.0.0...redis-6.0.1) (2023-03-01)
|
||||
|
||||
### Fix
|
||||
|
||||
- disable manifestmanager
|
||||
|
||||
|
|
@ -4,6 +4,11 @@
|
|||
|
||||
|
||||
|
||||
## [redis-6.0.2](https://github.com/truecharts/charts/compare/redis-6.0.1...redis-6.0.2) (2023-03-02)
|
||||
|
||||
|
||||
|
||||
|
||||
## [redis-6.0.1](https://github.com/truecharts/charts/compare/redis-6.0.0...redis-6.0.1) (2023-03-01)
|
||||
|
||||
### Fix
|
||||
|
@ -92,8 +97,3 @@
|
|||
|
||||
## [redis-5.0.25](https://github.com/truecharts/charts/compare/redis-5.0.24...redis-5.0.25) (2023-01-12)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/redis to 7.0.7
|
||||
|
||||
|
|
@ -24,7 +24,7 @@ sources:
|
|||
- https://github.com/bitnami/bitnami-docker-redis
|
||||
- http://redis.io/
|
||||
type: application
|
||||
version: 6.0.1
|
||||
version: 6.0.2
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- database
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
|
||||
## [redis-6.0.2](https://github.com/truecharts/charts/compare/redis-6.0.1...redis-6.0.2) (2023-03-02)
|
||||
|
|
@ -19,58 +19,31 @@ workload:
|
|||
secretKeyRef:
|
||||
name: "credentials"
|
||||
key: "redis-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:
|
||||
- sh
|
||||
- -c
|
||||
- /health/ping_liveness_local.sh 2
|
||||
|
||||
# -- Redainess probe configuration
|
||||
# @default -- See below
|
||||
type: exec
|
||||
command:
|
||||
- sh
|
||||
- -c
|
||||
- /health/ping_liveness_local.sh 2
|
||||
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:
|
||||
- sh
|
||||
- -c
|
||||
- /health/ping_readiness_local.sh 2
|
||||
type: exec
|
||||
command:
|
||||
- sh
|
||||
- -c
|
||||
- /health/ping_readiness_local.sh 2
|
||||
# -- 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:
|
||||
- sh
|
||||
- -c
|
||||
- /health/ping_readiness_local.sh 2
|
||||
type: exec
|
||||
command:
|
||||
- sh
|
||||
- -c
|
||||
- /health/ping_readiness_local.sh 2
|
||||
|
||||
securityContext:
|
||||
container:
|
Loading…
Reference in New Issue