diff --git a/headlamp/ingress.yaml b/headlamp/ingress.yaml deleted file mode 100644 index 17d9850..0000000 --- a/headlamp/ingress.yaml +++ /dev/null @@ -1,17 +0,0 @@ -apiVersion: networking.k8s.io/v1 -kind: Ingress -metadata: - name: headlamp-ingress - namespace: kube-system -spec: - rules: - - host: headlamp.cruzcloud.net - http: - paths: - - path: / - pathType: Prefix - backend: - service: - name: headlamp - port: - number: 80 \ No newline at end of file diff --git a/headlamp/kustomization.yaml b/headlamp/kustomization.yaml deleted file mode 100644 index b436104..0000000 --- a/headlamp/kustomization.yaml +++ /dev/null @@ -1,7 +0,0 @@ -apiVersion: kustomize.config.k8s.io/v1beta1 -kind: Kustomization -resources: - - https://raw.githubusercontent.com/kubernetes-sigs/headlamp/main/kubernetes-headlamp.yaml - - ingress.yaml -patches: - - path: patch-resources.yaml \ No newline at end of file diff --git a/headlamp/patch-resources.yaml b/headlamp/patch-resources.yaml deleted file mode 100644 index 88b302f..0000000 --- a/headlamp/patch-resources.yaml +++ /dev/null @@ -1,19 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: headlamp - namespace: kube-system -spec: - replicas: 2 # Forzamos 2 réplicas para Alta Disponibilidad - template: - spec: - containers: - - name: headlamp - # El equipo Cloud define cuánto puede consumir la app - resources: - requests: - cpu: "50m" - memory: "64Mi" - limits: - cpu: "250m" - memory: "256Mi" \ No newline at end of file