This commit is contained in:
Teddy 2026-02-20 23:33:45 +00:00
commit a83cfb8e28
13 changed files with 60386 additions and 0 deletions

24
forgejo/ingress.yaml Normal file
View file

@ -0,0 +1,24 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: forgejo
namespace: forgejo
annotations:
cert-manager.io/cluster-issuer: letsencrypt
spec:
ingressClassName: traefik
tls:
- hosts:
- git.roysland.net
secretName: forgejo-tls
rules:
- host: git.roysland.net
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: forgejo
port:
number: 3000