1
0
Fork 0

invoice-ninja: Add Ingress for HLC client portal

Tabitha wants to use the Invoice Ninja Client Portal and Stripe
integration for customer payments.
etcd
Dustin 2024-07-14 15:41:14 -05:00
parent 989556d458
commit f4d41c0ec7
1 changed files with 27 additions and 0 deletions

View File

@ -17,3 +17,30 @@ spec:
name: invoice-ninja name: invoice-ninja
port: port:
name: http 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