27 lines
466 B
YAML
27 lines
466 B
YAML
---
|
|
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: ntr-cv
|
|
namespace: ntr-cv
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: "letsencrypt-prod"
|
|
spec:
|
|
ingressClassName: haproxy
|
|
tls:
|
|
- hosts:
|
|
- ntwl.xyz
|
|
secretName: strix-systems-tls
|
|
rules:
|
|
- host: ntwl.xyz
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: ntr-cv
|
|
port:
|
|
number: 8080
|