traefik

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

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "traefik" with this command: npx skills add davidcastagnetoa/skills/davidcastagnetoa-skills-traefik

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 api_gateway_agent 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:
    apiVersion: traefik.io/v1alpha1
    kind: IngressRoute
    spec:
      routes:
        - match: Host(`api.verifid.com`) && PathPrefix(`/v1`)
          services:
            - name: orchestrator
              port: 8000
    
  3. Habilitar Let's Encrypt: configurar certificatesResolvers con ACME.
  4. Configurar middleware de rate limiting y circuit breaker.
  5. Habilitar dashboard en entorno de desarrollo: --api.dashboard=true.
  6. Configurar health checks activos hacia los backends.
  7. 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.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

c4_model_structurizr

No summary provided by upstream source.

Repository SourceNeeds Review
General

fastapi

No summary provided by upstream source.

Repository SourceNeeds Review
General

exif_metadata_analyzer

No summary provided by upstream source.

Repository SourceNeeds Review