kubernetes-best-practices

Installation
SKILL.md

Kubernetes Best Practices

This skill provides guidance for writing production-ready Kubernetes manifests and managing cloud-native applications.

Resource Management

Memory: Set requests and limits to the same value to ensure QoS class and prevent OOM kills.

CPU: Set requests only, omit limits to allow performance bursting and avoid throttling.

resources:
  requests:
    memory: "256Mi"
    cpu: "250m"
  limits:
    memory: "256Mi"
    # No CPU limit
Installs
14
GitHub Stars
29
First Seen
Feb 4, 2026
kubernetes-best-practices — armanzeroeight/fastagent-plugins