añadido harbor y nextcloud

This commit is contained in:
2025-04-27 22:56:26 +00:00
parent 0a36e930e7
commit 8ed2a07946
11 changed files with 194 additions and 0 deletions

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