From a7002f6f508d83444b634652c02e750558f8f305 Mon Sep 17 00:00:00 2001 From: aggarwalakshun Date: Sun, 12 Oct 2025 00:11:03 +0530 Subject: [PATCH] update gitea-act deployment to use internal service for readiness check --- cluster/apps/gitea-act/gitea-act.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cluster/apps/gitea-act/gitea-act.yml b/cluster/apps/gitea-act/gitea-act.yml index a61d5c2..0699e51 100644 --- a/cluster/apps/gitea-act/gitea-act.yml +++ b/cluster/apps/gitea-act/gitea-act.yml @@ -18,7 +18,6 @@ spec: labels: app: gitea-act-runner spec: - hostNetwork: true restartPolicy: Always volumes: - name: docker-certs @@ -33,7 +32,7 @@ spec: - sh - -c - | - while ! nc -z gitea.akshun-lab.cc 443; do + while ! nc -z gitea-int-service 3000; do echo "Waiting for Gitea to be ready..." sleep 5 done