davidcastagnetoa/skills

traefik

Reverse proxy moderno con autodiscovery nativo en Kubernetes y Let's Encrypt

First seen Mar 3, 2026

Installation

$ npx skills add davidcastagnetoa/skills --skill traefik

Also in this package

Other skills from davidcastagnetoa/skills · top by installs.

npx skills add davidcastagnetoa/skills

Browse all from davidcastagnetoa/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,567 B
  • docs SUMMARY.md 91 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 116 installs

SKILL.md

traefik

Traefik es un reverse proxy y load balancer moderno con autodiscovery de servicios en Kubernetes, Docker y otros orquestadores. Alternativa a Nginx con configuración declarativa y certificados automáticos.

When to use

Usar como alternativa al apigatewayagent basado en Nginx si se prefiere autodiscovery nativo en Kubernetes. Especialmente útil en entornos donde los servicios se escalan dinámicamente.

Instructions

  1. Desplegar en Kubernetes: helm install traefik traefik/traefik.
  2. Configurar IngressRoute para el orquestador:

``yaml apiVersion: traefik.io/v1alpha1 kind: IngressRoute spec: routes: - match: Host(api.verifid.com) && PathPrefix(/v1) services: - name: orchestrator port: 8000 ``

  1. Habilitar Let's Encrypt: configurar certificatesResolvers con ACME.
  2. Configurar middleware de rate limiting y circuit breaker.
  3. Habilitar dashboard en entorno de desarrollo: --api.dashboard=true.
  4. Configurar health checks activos hacia los backends.
  5. Exponer métricas Prometheus: --metrics.prometheus=true.

Notes

  • Traefik tiene mayor overhead que Nginx (~10-15% menos throughput) pero mejor DX.
  • El autodiscovery elimina la necesidad de reconfigurar manualmente al escalar servicios.
  • En producción de alto tráfico (>10K RPS), Nginx con Lua sigue siendo la opción más eficiente.