add app nexus

This commit is contained in:
2024-06-25 19:39:10 +10:00
parent cd4269e485
commit 72be4562ec
5 changed files with 103 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: nexus-ingress
namespace: nexus
annotations:
nginx.ingress.kubernetes.io/ssl-redirect: "false"
nginx.ingress.kubernetes.io/use-regex: "true"
nginx.ingress.kubernetes.io/proxy-body-size: "50m"
spec:
ingressClassName: nginx
rules:
- host: "nexus.cluster.local"
http:
paths:
- pathType: Prefix
path: "/"
backend:
service:
name: nexus
port:
number: 32000
- host: "nexus.cluster.edward.sydney"
http:
paths:
- pathType: Prefix
path: "/"
backend:
service:
name: nexus
port:
number: 32000