cluster

Infrastructure files for Nordgedanken and Midnightthoughts.
git clone git://archive.git.mtrnord.blog/MTRNord/cluster.git
Log | Files | Refs | README

commit cb1c9083b08880aa1cc2138fe8ce1a1e5a84e97d
parent be48c83c9958d6eb4e76d2a0f032633dd145c772
Author: MTRNord <mtrnord1@gmail.com>
Date:   Sat, 28 Sep 2024 19:48:19 +0200

Route a testing address to apisix

Diffstat:
Aapps/base/apisix/ingresses.yaml | 24++++++++++++++++++++++++
1 file changed, 24 insertions(+), 0 deletions(-)

diff --git a/apps/base/apisix/ingresses.yaml b/apps/base/apisix/ingresses.yaml @@ -0,0 +1,24 @@ +# Redirect testing.midnightthoughts.space to "apisix-gateway" service in the apisix namespace +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: apisix-midnightthoughts-space + namespace: apisix + annotations: + cert-manager.io/cluster-issuer: letsencrypt-dns + external-dns.alpha.kubernetes.io/hostname: midnightthoughts.space +spec: + rules: + - host: testing.midnightthoughts.space + http: + paths: + - pathType: Prefix + backend: + service: + name: apisix-gateway + port: + number: 80 + tls: + - hosts: + - testing.midnightthoughts.space + secretName: midnightthoughts-space-tls