25 lines
507 B
YAML
25 lines
507 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
annotations:
|
|
nginx.ingress.kubernetes.io/proxy-body-size: "0"
|
|
name: ing-nexus
|
|
namespace: nexus
|
|
spec:
|
|
ingressClassName: nginx
|
|
rules:
|
|
- host: nexus.inje-private.com
|
|
http:
|
|
paths:
|
|
- backend:
|
|
service:
|
|
name: nexus-nexus-repository-manager
|
|
port:
|
|
name: nexus-ui
|
|
path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- hosts:
|
|
- "nexus.inje-private.com"
|
|
secretName: nexus-ssl
|