Kubernetes Principles
Use this skill as standing guidance for this domain. Apply the checklist first; read the detailed reference only when the task is substantial, risky, unfamiliar, or review-oriented.
Operating Rules
- Prefer the repository's existing conventions, toolchain, and CI commands over generic defaults.
- Make the smallest coherent change that satisfies the request while preserving behavior.
- Treat tests, linting, dependency hygiene, and security review as part of completion.
- If a principle conflicts with higher-priority repository instructions or an explicit user request, follow the higher-priority instruction and call out the tradeoff.
Core Checklist
- Set requests, limits, probes, disruption budgets, and rollout strategy deliberately for production workloads.
- Use namespace boundaries, least-privilege RBAC, and network policies for isolation.
- Follow Kubernetes Pod Security Standards; default application workloads toward the Restricted profile.
- Run containers as non-root, drop unnecessary capabilities, and avoid host namespaces and privileged containers.
- Store configuration in ConfigMaps and secrets appropriately; do not commit plaintext secrets.
- Validate Helm templates, CRDs, and manifests against schemas and policy before applying.
- Use labels and annotations consistently for ownership, observability, selection, and lifecycle automation.
- Design upgrades and rollbacks before changing stateful workloads, ingress, storage, or networking.
Validation
Run applicable checks when they exist in the project; if a tool is missing, report that it was skipped.
helm lint for charts
helm template ... | kubeconform -strict or schema validation for rendered manifests
- Policy checks with Kyverno, Gatekeeper/OPA, Conftest, or the project's admission policy tooling
Detailed Reference
For the complete principle set with examples and edge cases, read references/principles.md when deeper guidance is useful.
Source: asciifylabs/asciify-skills — distributed by TomeVault.
1---2name: kubernetes-principles3description: Kubernetes and Helm standards for manifests, charts, values files, RBAC, workloads, networking, policy, validation, or deployment review. Use when this capability is needed.4---56# Kubernetes Principles78Use this skill as standing guidance for this domain. Apply the checklist first; read the detailed reference only when the task is substantial, risky, unfamiliar, or review-oriented.910## Operating Rules1112- Prefer the repository's existing conventions, toolchain, and CI commands over generic defaults.13- Make the smallest coherent change that satisfies the request while preserving behavior.14- Treat tests, linting, dependency hygiene, and security review as part of completion.15- If a principle conflicts with higher-priority repository instructions or an explicit user request, follow the higher-priority instruction and call out the tradeoff.1617## Core Checklist1819- Set requests, limits, probes, disruption budgets, and rollout strategy deliberately for production workloads.20- Use namespace boundaries, least-privilege RBAC, and network policies for isolation.21- Follow Kubernetes Pod Security Standards; default application workloads toward the Restricted profile.22- Run containers as non-root, drop unnecessary capabilities, and avoid host namespaces and privileged containers.23- Store configuration in ConfigMaps and secrets appropriately; do not commit plaintext secrets.24- Validate Helm templates, CRDs, and manifests against schemas and policy before applying.25- Use labels and annotations consistently for ownership, observability, selection, and lifecycle automation.26- Design upgrades and rollbacks before changing stateful workloads, ingress, storage, or networking.2728## Validation2930Run applicable checks when they exist in the project; if a tool is missing, report that it was skipped.3132- `helm lint` for charts33- `helm template ... | kubeconform -strict` or schema validation for rendered manifests34- Policy checks with Kyverno, Gatekeeper/OPA, Conftest, or the project's admission policy tooling3536## Detailed Reference3738For the complete principle set with examples and edge cases, read [references/principles.md](references/principles.md) when deeper guidance is useful.3940---41> Source: [asciifylabs/asciify-skills](https://github.com/asciifylabs/asciify-skills) — distributed by [TomeVault](https://tomevault.io).42<!-- tomevault:4.0:skill_md:2026-05-22 -->