feat(k8s/gitea): enable Actions and split packages/actions into extra PVC

This commit is contained in:
2026-05-11 21:02:17 +03:00
parent 00b2da5f88
commit 9012cb559d
6 changed files with 254 additions and 15 deletions
+20
View File
@@ -79,6 +79,26 @@ spec:
ports:
- port: 5432
---
# Allow act_runner pods to reach gitea-http (HelmRelease for Actions registers and polls jobs via cluster-internal Service)
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-runner-to-gitea
namespace: gitea
spec:
podSelector:
matchLabels:
app.kubernetes.io/name: gitea
policyTypes:
- Ingress
ingress:
- from:
- podSelector:
matchLabels:
app.kubernetes.io/name: actions-act-runner
ports:
- port: 3000
---
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata: