CURSOR RULESKubernetes & Helm Cursor Rules (.mdc) | Cloud-Native Manifest Validator
Production-grade architectural rulebook for Kubernetes & Helm Charts. Engineered to eliminate LLM hallucinations, enforce strict deterministic conventions, and prevent architectural drift across Cursor IDE, Claude Code CLI, and autonomous multi-agent pipelines.
.cursor/rules/kubernetes.mdcFailure Patterns Prevented for Kubernetes & Helm Charts
AI models frequently write dangerous Kubernetes manifests with missing CPU/memory limits, root privilege escalation, missing health probes, and invalid Helm template whitespace indentation, causing cluster outages or CVE vulnerabilities.
- Invokes deprecated or removed APIs from older model training weights
- Generates conflicting configuration files and invalid imports
- Silently drops type-safety, boundaries, or transaction isolation
Code Standards: Anti-Pattern vs Verified Implementation
# Dangerous: No resource constraints, root container, missing probes
apiVersion: apps/v1
kind: Deployment
metadata:
name: bad-service
spec:
template:
spec:
containers:
- name: app
image: myapp:latest # Mutable tag and unconstrained limits!apiVersion: apps/v1
kind: Deployment
metadata:
name: api-service
labels:
app.kubernetes.io/name: api-service
spec:
replicas: 3
template:
spec:
securityContext:
runAsNonRoot: true
runAsUser: 10001
containers:
- name: api
image: registry.example.com/api:v1.4.0
securityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 500m
memory: 512Mi
readinessProbe:
httpGet:
path: /healthz
port: 8080
initialDelaySeconds: 5How to Install Kubernetes & Helm Charts Cursor Rules (.mdc) via Terminal
Step 1: Open Project Directory & Verify Target Placement
Open your terminal and navigate to your project root folder where the .cursor/rules/kubernetes.mdc file will reside. Ensure the file is placed at the exact path below relative to your project root so the AI engine automatically loads it:
Step 2: Fetch Rule File via Terminal Command
Run curl, PowerShell, or wget to stream the rule directly from the DevScratchpad raw API endpoint and write it to .cursor/rules/kubernetes.mdc:
Terminal One-Liner Install
Run directly in your project root to stream and write this rule file with one command.
mkdir -p ".cursor/rules" && curl -fsSL "https://www.devscratchpad.tech/api/raw/cursor-rules/kubernetes-helm" -o ".cursor/rules/kubernetes.mdc"Step 3: Verify and Activate with AI Agent
Launch your AI coding assistant (Cursor IDE & Composer). The assistant will automatically discover .cursor/rules/kubernetes.mdc in your repository and apply the architectural guardrails, type constraints, and verification protocols during code generation.
Cursor Rules (.mdc) Directory & Generator
Inspect the complete specification manual, glob patterns, directory rules, and all available presets in our central directory.
Technical FAQ: Kubernetes & Helm Charts AI Rulebooks
Does this rulebook enforce resource requests and limits?
Yes, it requires explicit CPU and memory boundaries to prevent OOMKilled cascade failures.
Can this rule be applied to Helm templates?
Yes, it covers Helm values.yaml schema constraints and helper template indentation rules.