49 lines
1.0 KiB
YAML
49 lines
1.0 KiB
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: invoice-ninja
|
|
labels:
|
|
app.kubernetes.io/name: invoice-ninja
|
|
app.kubernetes.io/component: invoice-ninja
|
|
annotations:
|
|
nginx.ingress.kubernetes.io/proxy-body-size: 40m
|
|
spec:
|
|
rules:
|
|
- host: invoiceninja.pyrocufflink.blue
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: invoice-ninja
|
|
port:
|
|
name: http
|
|
|
|
---
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: hlc-client-portal
|
|
labels:
|
|
app.kubernetes.io/name: hlc-client-portal
|
|
app.kubernetes.io/component: invoice-ninja
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: zerossl
|
|
spec:
|
|
tls:
|
|
- hosts:
|
|
- billing.hatchlearningcenter.org
|
|
secretName: hlc-client-portal-cert
|
|
rules:
|
|
- host: billing.hatchlearningcenter.org
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: invoice-ninja
|
|
port:
|
|
name: http
|