forked from public/stack
24 lines
464 B
YAML
24 lines
464 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: invoiceshelf
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt
|
|
spec:
|
|
ingressClassName: nginx
|
|
rules:
|
|
- host: billing.distrust.co
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: invoiceshelf
|
|
port:
|
|
name: http
|
|
tls:
|
|
- hosts:
|
|
- billing.distrust.co
|
|
secretName: invoiceshelf-tls
|