fix(node): use headless service in all the scripts
Some checks failed
Build and Push Image / Build and push image (push) Failing after 13s

This commit is contained in:
2025-05-28 11:11:12 +02:00
parent 3c550b3015
commit 09c6791509
6 changed files with 9 additions and 9 deletions

View File

@ -8,7 +8,7 @@ vcli() {
# Run Sentinel command
vcli-sentinel() {
valkey-cli -h "$VALKEY_SERVICE" -p "$VALKEY_SENTINEL_PORT" sentinel "$@"
valkey-cli -h "${VALKEY_HEADLESS_SERVICE}" -p "${VALKEY_SENTINEL_PORT}" sentinel "$@"
return $?
}