Files
KubeApps/apps/gittea/gitea-ingress.yaml
Chris Richardson 486feff6e6 asd
2025-07-10 22:14:41 -04:00

28 lines
642 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
acme.cert-manager.io/http01-edit-in-place: "true"
cert-manager.io/issuer: letsencrypt-prod
kubernetes.io/ingress.class: nginx
nginx.org/client-max-body-size: "0"
nginx.ingress.kubernetes.io/proxy-body-size: "0"
name: gittea-ingress
namespace: default
spec:
rules:
- host: git.lilpenguins.com
http:
paths:
- backend:
service:
name: gitea-service
port:
number: 80
path: /
pathType: Prefix
tls:
- hosts:
- git.lilpenguins.com
secretName: gitea-tls-prod