From 85e74d8934aa8fde2ddbfa530c73a85f0a171256 Mon Sep 17 00:00:00 2001 From: devops Date: Sat, 20 Jun 2026 22:06:37 +0000 Subject: [PATCH] =?UTF-8?q?A=C3=B1adir=20headlamp/kustomization.yaml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Este archivo es el "director de orquesta". Toma la versión oficial estable (la lógica base que ya funciona) y le suma tu Ingress y tus parches de control. --- headlamp/kustomization.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 headlamp/kustomization.yaml diff --git a/headlamp/kustomization.yaml b/headlamp/kustomization.yaml new file mode 100644 index 0000000..81e8cc7 --- /dev/null +++ b/headlamp/kustomization.yaml @@ -0,0 +1,11 @@ +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization + +# 1. Tomamos la base oficial y estable que ya tenías +resources: + - [https://raw.githubusercontent.com/kubernetes-sigs/headlamp/main/kubernetes-headlamp.yaml](https://raw.githubusercontent.com/kubernetes-sigs/headlamp/main/kubernetes-headlamp.yaml) + - ingress.yaml + +# 2. Aplicamos las reglas de negocio del equipo Cloud +patches: + - path: patch-resources.yaml \ No newline at end of file