From 06f5179273036ce6e762ac989de84c5304719a36 Mon Sep 17 00:00:00 2001 From: bachorp Date: Wed, 26 Mar 2025 17:12:56 +0000 Subject: [PATCH] docs: fix typo in initialization script (#842) Reviewed-on: https://gitea.com/gitea/helm-gitea/pulls/842 Reviewed-by: techknowlogick Co-authored-by: bachorp Co-committed-by: bachorp --- templates/gitea/init.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/gitea/init.yaml b/templates/gitea/init.yaml index 5218b86..5542fca 100644 --- a/templates/gitea/init.yaml +++ b/templates/gitea/init.yaml @@ -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]