Primer commit

This commit is contained in:
2025-04-27 22:54:47 +00:00
commit 006cc47cd2
9 changed files with 154 additions and 0 deletions

25
ingress/ingress.yaml Normal file
View File

@ -0,0 +1,25 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: nextcloud-ingress
namespace: nextcloud
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-prod"
nginx.ingress.kubernetes.io/ssl-redirect: "true"
spec:
ingressClassName: nginx
tls:
- hosts:
- nextcloud.manabo.org
secretName: nextcloud-tls
rules:
- host: nextcloud.manabo.org
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: nextcloud
port:
number: 80