Primer commit

This commit is contained in:
2025-04-27 15:57:11 +00:00
commit aac30bfe77
18 changed files with 310 additions and 0 deletions

26
ingress/ingress.yaml Normal file
View File

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