Files
truecharts/charts/stable/valkey/values.yaml
T
TrueCharts Bot 5d3dedae0c chore(valkey): update image docker.io/bitnamisecure/valkey digest to 5c2965c (#48186)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/bitnamisecure/valkey | digest | `11d444e` → `5c2965c` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the [Dependency
Dashboard](../issues/18710) for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Configuration

📅 **Schedule**: (UTC)

- Branch creation
  - At any time (no schedule defined)
- Automerge
  - At any time (no schedule defined)

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImFwcC92YWxrZXkiLCJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2026-05-13 07:22:36 +02:00

157 lines
4.8 KiB
YAML

# yaml-language-server: $schema=./values.schema.json
image:
repository: docker.io/bitnamisecure/valkey
pullPolicy: IfNotPresent
tag: latest@sha256:5c2965cb5d4271e7a84e1addcdd70c5cb0b00cdbcdcadce5871eb70104f638aa
workload:
main:
replicas: 1
type: StatefulSet
strategy: RollingUpdate
podSpec:
containers:
main:
env:
# DEVNOTE: Bitnami Valkey keeps VALKEY_* env variable names for compatibility.
# VALKEY_REPLICATION_MODE: master
ALLOW_EMPTY_PASSWORD: '{{ ternary "yes" "no" (empty .Values.password) }}'
VALKEY_PORT: "{{ .Values.service.main.ports.main.targetPort }}"
VALKEY_PASSWORD: "{{ .Values.password }}"
probes:
liveness:
enabled: true
type: exec
command:
- sh
- -c
- /health/ping_liveness_local.sh 2
readiness:
enabled: true
type: exec
command:
- sh
- -c
- /health/ping_readiness_local.sh 2
# -- Startup probe configuration
# @default -- See below
startup:
# -- Enable the startup probe
enabled: true
type: exec
command:
- sh
- -c
- /health/ping_readiness_local.sh 2
securityContext:
container:
readOnlyRootFilesystem: false
runAsGroup: 0
configmap:
health:
enabled: true
data:
ping_readiness_local.sh: |-
#!/bin/bash
[[ -n "$VALKEY_PASSWORD" ]] && export VALKEYCLI_AUTH="$VALKEY_PASSWORD"
response=$(
timeout -s 3 $1 \
valkey-cli \
-h localhost \
-p $VALKEY_PORT \
ping
)
if [ "$response" != "PONG" ]; then
echo "failed to connect using password: $VALKEY_PASSWORD response: $response"
exit 1
fi
ping_liveness_local.sh: |-
#!/bin/bash
[[ -n "$VALKEY_PASSWORD" ]] && export VALKEYCLI_AUTH="$VALKEY_PASSWORD"
response=$(
timeout -s 3 $1 \
valkey-cli \
-h localhost \
-p $VALKEY_PORT \
ping
)
if [ "$response" != "PONG" ] && [ "$response" != "LOADING Valkey is loading the dataset in memory" ]; then
echo "$response"
exit 1
fi
ping_readiness_master.sh: |-
#!/bin/bash
[[ -n "$VALKEY_MASTER_PASSWORD" ]] && export VALKEYCLI_AUTH="$VALKEY_MASTER_PASSWORD"
response=$(
timeout -s 3 $1 \
valkey-cli \
-h $VALKEY_MASTER_HOST \
-p $VALKEY_MASTER_PORT_NUMBER \
ping
)
if [ "$response" != "PONG" ]; then
echo "$response"
exit 1
fi
ping_liveness_master.sh: |-
#!/bin/bash
[[ -n "$VALKEY_MASTER_PASSWORD" ]] && export VALKEYCLI_AUTH="$VALKEY_MASTER_PASSWORD"
response=$(
timeout -s 3 $1 \
valkey-cli \
-h $VALKEY_MASTER_HOST \
-p $VALKEY_MASTER_PORT_NUMBER \
ping
)
if [ "$response" != "PONG" ] && [ "$response" != "LOADING Valkey is loading the dataset in memory" ]; then
echo "$response"
exit 1
fi
ping_readiness_local_and_master.sh: |-
script_dir="$(dirname "$0")"
exit_status=0
"$script_dir/ping_readiness_local.sh" $1 || exit_status=$?
"$script_dir/ping_readiness_master.sh" $1 || exit_status=$?
exit $exit_status
ping_liveness_local_and_master.sh: |-
script_dir="$(dirname "$0")"
exit_status=0
"$script_dir/ping_liveness_local.sh" $1 || exit_status=$?
"$script_dir/ping_liveness_master.sh" $1 || exit_status=$?
exit $exit_status
## DEVNOTE: This password needs to match the one set in Common if ever changing defaults
password: "PLACEHOLDERPASSWORD"
service:
main:
ports:
main:
port: 6379
targetPort: 6379
volumeClaimTemplates:
data:
enabled: true
accessModes:
- ReadWriteOnce
mountPath: "/bitnami/valkey"
persistence:
valkey-health:
enabled: true
type: configmap
objectName: health
mountPath: "/health"
defaultMode: "0755"
items:
- key: ping_readiness_local.sh
path: ping_readiness_local.sh
- key: ping_liveness_local.sh
path: ping_liveness_local.sh
- key: ping_readiness_master.sh
path: ping_readiness_master.sh
- key: ping_liveness_master.sh
path: ping_liveness_master.sh
- key: ping_liveness_local_and_master.sh
path: ping_liveness_local_and_master.sh
- key: ping_readiness_local_and_master.sh
path: ping_readiness_local_and_master.sh