docs: fix typo in initialization script (#842)

Reviewed-on: https://gitea.com/gitea/helm-gitea/pulls/842
Reviewed-by: techknowlogick <techknowlogick@noreply.gitea.com>
Co-authored-by: bachorp <gitea.revivable069@passmail.net>
Co-committed-by: bachorp <gitea.revivable069@passmail.net>
This commit is contained in:
bachorp 2025-03-26 17:12:56 +00:00 committed by techknowlogick
parent e7e2ae9610
commit 06f5179273

View File

@ -62,7 +62,7 @@ stringData:
local RETRY=0
local MAX=30
echo 'Wait for redis to become avialable...'
echo 'Wait for redis to become available...'
until [ "${RETRY}" -ge "${MAX}" ]; do
nc -vz -w2 {{ include "redis.servicename" . }} {{ include "redis.port" . }} && break
RETRY=$[${RETRY}+1]