From 3b2b9a961f4a50c1ffc3f094c63c74f07eeca1c6 Mon Sep 17 00:00:00 2001 From: devops Date: Sat, 20 Jun 2026 21:24:27 +0000 Subject: [PATCH] =?UTF-8?q?A=C3=B1adir=20ingress.yaml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Este archivo ingress le dirá a Traefik cómo conectar el tráfico exterior con la aplicación interna. --- ingress.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 ingress.yaml diff --git a/ingress.yaml b/ingress.yaml new file mode 100644 index 0000000..39185e7 --- /dev/null +++ b/ingress.yaml @@ -0,0 +1,17 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: guestbook-ingress + namespace: default +spec: + rules: + - host: app.cruzcloud.net # <-- Este será tu subdominio público + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: guestbook-ui + port: + number: 80 \ No newline at end of file