This commit is contained in:
2025-08-27 18:37:54 +02:00
parent b0c5bb4a4d
commit 23ef2ce590
12 changed files with 759 additions and 0 deletions

25
gitea/ingress.yaml Normal file
View File

@@ -0,0 +1,25 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: gitea
namespace: gitea
annotations:
kubernetes.io/ingress.class: nginx
cert-manager.io/cluster-issuer: letsencrypt
spec:
tls:
- hosts:
- gitea.undercloud.cf
secretName: gitea-tls
rules:
- host: gitea.undercloud.cf
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: gitea
port:
number: 3000