add nexus oss

This commit is contained in:
2025-04-05 23:45:57 +02:00
parent 556617ece5
commit 9a3f4bac60
5 changed files with 92 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: sonatype-nexus
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-prod"
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
spec:
ingressClassName: nginx
tls:
- hosts:
- nexus.prod.panic.haus
secretName: keycloak-tls
rules:
- host: nexus.prod.panic.haus
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: sonatype-nexus
port:
number: 8081