From 104d67bfb374c8a7f7b3fc1d3c459264e1c307bf Mon Sep 17 00:00:00 2001 From: ab Date: Wed, 22 Oct 2025 15:29:34 +0000 Subject: [PATCH] Add k8s/apps/hexound/ingress.yaml --- k8s/apps/hexound/ingress.yaml | 37 +++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 k8s/apps/hexound/ingress.yaml diff --git a/k8s/apps/hexound/ingress.yaml b/k8s/apps/hexound/ingress.yaml new file mode 100644 index 0000000..7e54c99 --- /dev/null +++ b/k8s/apps/hexound/ingress.yaml @@ -0,0 +1,37 @@ +--- +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: hexound-tls-ingress + annotations: + ingressClassName: traefik + cert-manager.io/cluster-issuer: letsencrypt + traefik.ingress.kubernetes.io/router.middlewares: kube-system-https-redirect@kubernetescrd + acme.cert-manager.io/http01-edit-in-place: "true" +spec: + rules: + - host: hexound.hexor.cy + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: hexound + port: + number: 80 + - host: hexound.hexor.ru + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: hexound + port: + number: 80 + tls: + - secretName: hexound-tls + hosts: + - hexound.hexor.cy + - hexound.hexor.ru \ No newline at end of file