From f4d41c0ec78d2e6b2cd4d5c0f4490799275bc017 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sun, 14 Jul 2024 15:41:14 -0500 Subject: [PATCH] invoice-ninja: Add Ingress for HLC client portal Tabitha wants to use the Invoice Ninja Client Portal and Stripe integration for customer payments. --- invoice-ninja/ingress.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/invoice-ninja/ingress.yaml b/invoice-ninja/ingress.yaml index 0406eb2..fcf0b92 100644 --- a/invoice-ninja/ingress.yaml +++ b/invoice-ninja/ingress.yaml @@ -17,3 +17,30 @@ spec: 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