From 296c837bde6c8556354dc999334f529f6b222d81 Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Thu, 20 Mar 2025 05:16:37 -0500 Subject: [PATCH] update --- dmz/internalproxy/templates/kuma.yaml | 42 +++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 dmz/internalproxy/templates/kuma.yaml diff --git a/dmz/internalproxy/templates/kuma.yaml b/dmz/internalproxy/templates/kuma.yaml new file mode 100644 index 0000000..8ec8aa0 --- /dev/null +++ b/dmz/internalproxy/templates/kuma.yaml @@ -0,0 +1,42 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: kuma-ingress +spec: + entryPoints: + - websecure + routes: + - match: Host(`kuma.durp.info`) && PathPrefix(`/`) + kind: Rule + services: + - name: infra-cluster + port: 443 + tls: + secretName: kuma-tls + +--- + +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: kuma-tls +spec: + issuerRef: + name: letsencrypt-production + kind: ClusterIssuer + secretName: kuma-tls + commonName: "kuma.durp.info" + dnsNames: + - "kuma.durp.info" + +--- + +kind: Service +apiVersion: v1 +metadata: + name: kuma-external-dns + annotations: + external-dns.alpha.kubernetes.io/hostname: kuma.durp.info +spec: + type: ExternalName + externalName: durp.info