linkerd

📁 g1joshi/agent-skills 📅 3 days ago
1
总安装量
1
周安装量
#41290
全站排名
安装命令
npx skills add https://github.com/g1joshi/agent-skills --skill linkerd

Agent 安装分布

mcpjam 1
claude-code 1
replit 1
junie 1
zencoder 1

Skill 文档

Linkerd

Linkerd is a lightweight Service Mesh. It focuses on simplicity and performance (Rust-based proxies). v2.15 (2025) enables Mesh Expansion to VMs.

When to Use

  • Low Overhead: You want mTLS and Metrics but can’t afford Istio’s CPU tax.
  • Simplicity: “It just works”. No complex configuration for basic features.
  • Security: Default-on mTLS and authorization policies.

Core Concepts

Micro-Proxy

Linkerd uses a specialized Rust proxy (not Envoy) that is tiny and fast.

Viz Extension

A dashboard and Prometheus instance pre-configured to show mesh metrics (Success Rate, Latency).

ServiceProfiles

Define retry logic and timeouts per route.

Best Practices (2025)

Do:

  • Use HA Mode: Run control plane in high-availability mode for production.
  • Automate Cert Rotation: Use cert-manager to rotate the mTLS root CA automatically.
  • Expand to VMs: Use the new 2.15 feature to include legacy databases in the mesh.

Don’t:

  • Don’t disable mTLS: It’s verified automatically. Keep it on.

References