Catalog
google/gke-manifest-generation

google

gke-manifest-generation

Generates and updates secure, production-ready Kubernetes YAML manifests optimized for GKE Autopilot and GKE Standard clusters. Use when creating or modifying GKE deployment manifests, configuring container security contexts, setting CPU/memory resource limits, defining readiness/liveness/startup probes, mounting secrets and volumes, configuring GKE Gateway API routes, targeting Spot VMs, or deploying AI model inference workloads (vLLM, TGI, Gemma). Don't use for live cluster operations, pod troubleshooting (use gke-workload-troubleshooting), or cluster infrastructure provisioning (use gke-cluster-creation).

global
category:Containers
New~3.1k
v1.0Saved Jul 29, 2026

GKE Manifest Generation Skill

This skill provides guidelines, tooling integration, and templates to translate natural language descriptions or application code changes into secure, compliant, and cost-effective Kubernetes YAML manifests optimized for both GKE Autopilot and GKE Standard clusters.

Core Rules & Verification

When generating or updating YAML manifests, you must strictly adhere to the following rules:

1. Namespace & Resource Isolation

  • Explicit Namespace: Always declare namespace: {namespace} explicitly in the metadata of every resource (Deployments, Services, ConfigMaps, Secrets, PVCs, Roles, bindings). Map it to the namespace configured in your active SETTINGS.md. Never omit the namespace.
  • Dedicated ServiceAccount: Avoid using the namespace's default ServiceAccount. Always create and reference a dedicated ServiceAccount (e.g., devteam-agent-sa) for each microservice.

2. GKE Resource Tuning (Autopilot & Standard)

  • Resources Requests & Limits: Always specify CPU and Memory requests and limits for all containers.

    • GKE Autopilot: Requests determine pod billing directly; requests and limits must be equal. If they differ, Autopilot will automatically scale requests up to match limits, which can significantly increase costs.
    • GKE Standard: Requests ensure stable scheduling and bin-packing; limits prevent resource starvation/noisy-neighbor issues.
  • Density Defaults: For stateless apps or sidecars on GKE Standard, default to conservative requests (e.g., requests.cpu: "100m" or "200m", requests.memory: "256Mi" or "512Mi") with burstable limits. Use a reasonable overcommit ratio for limits (e.g., 2x to 4x requests, like limits.cpu: "400m" to "800m", and limits.memory: "512Mi" to "1Gi"). Avoid excessive overcommit limits (like limits.cpu: "4" for a 100m request) to prevent severe CPU throttling and latency degradation under heavy scheduling load, particularly in environments without guaranteed node shares.

  • Spot VMs for Staging/Dev: For non-production workloads (e.g., namespaces containing -test, -dev, or -staging), or if the user requests cost optimization, automatically target GKE Spot VMs. This requires injecting both the nodeSelector targeting Spot VMs AND the corresponding toleration to tolerate the Spot VM taint:

    nodeSelector:
      cloud.google.com/gke-spot: "true"
    tolerations:
      - key: "cloud.google.com/gke-spot"
        operator: "Equal"
        value: "true"
        effect: "NoSchedule"
    

    (On GKE Standard, this assumes a Spot node pool is configured).

3. Container Security Hardening (Pod Security Standards)

  • Non-Root Execution: Always configure securityContext at the Pod level (and container level if overriding) to run as a non-root user (e.g., runAsNonRoot: true, runAsUser: 10000, runAsGroup: 10000, fsGroup: 10000). This is strictly enforced on GKE Autopilot and is a critical security baseline for GKE Standard.
  • Minimal Privileges: Always set allowPrivilegeEscalation: false and seccompProfile: {type: RuntimeDefault}.
  • Read-Only Root Filesystem: Set readOnlyRootFilesystem: true to prevent modifications to the container image filesystem.
    • Writable Directory Fallback: If readOnlyRootFilesystem is enabled, mount a local emptyDir volume to /tmp or /var/run/ to allow applications (like Java/Nginx) to write temp files without crashing.
  • Secret Volume Mounting: Prefer mounting Secrets as read-only files (configured in the volumes spec with defaultMode: 0400) instead of mapping them as environment variables, unless the application framework exclusively supports env-var based configuration. This prevents secrets leaking into application logs.

4. Health Checking (Mandatory Probes)

  • Liveness & Readiness Probes: Every Deployment container must define both livenessProbe and readinessProbe.

    • Web/API: Use httpGet probes.
    • TCP Services: Use tcpSocket probes.
    • Databases/Caches: Use command-based exec probes (e.g., exec.command: ["redis-cli", "ping"]).
  • Startup Probes for Slow-Starting Apps: For applications with slow boot times (e.g., Java spring boot, complex Python scripts, LLM model servers), you must also define a startupProbe. When a startupProbe is defined, the liveness and readiness probes are disabled until it succeeds, preventing Kubernetes from prematurely killing the pod during startup:

    startupProbe:
      httpGet:
        path: /healthz
        port: 8080
      failureThreshold: 30
      periodSeconds: 10
    
  • Sensible Defaults: Set initialDelaySeconds: 5 to 15 depending on startup time (e.g., Java requires a longer delay than Go/Nginx).

5. Services & Ingress Routing

  • Internal ClusterIP: Default all internal microservices to type: ClusterIP. Never use type: LoadBalancer or NodePort unless the workload is explicitly intended to be publicly accessible from the internet.
  • Port Naming: Always assign clear, standard names to service and container ports (e.g., name: http-web or name: grpc-api) to enable automatic protocol discovery, tracing, and Web App routing.
  • Prefer Gateway API: When exposing APIs externally, prioritize using GKE Gateway API (Gateway and HTTPRoute resources) over legacy Ingress objects to enable advanced L7 routing and security features (e.g., Cloud Armor).

6. Volume Mounts, StorageClasses & subPath Safety

  • Avoid Directory Overwrites: When mounting a ConfigMap or Secret to an application directory containing other files (like Nginx public directories), always use subPath to overlay only the specific file. Caveat: Note that containers using subPath volume mounts do not receive automatic configuration updates if the underlying ConfigMap or Secret is modified; pods must be restarted manually to pick up changes.
  • StorageClass Selection: Use the correct GKE storage class in PersistentVolumeClaims:
    • CSI Driver Clusters (Autopilot & Modern Standard): Use standard-rwo (default balanced PD) or premium-rwo (SSD PD).
    • Legacy Standard Clusters: Use standard (default PD) or premium (SSD PD) if standard-rwo/premium-rwo are not configured.
    • Database rule: Use SSD storage classes (premium-rwo or premium) only when the prompt explicitly requests high IOPS, low latency, or database storage.

7. High Availability on GKE

  • Topology Spread: For deployments with >1 replica, use podAntiAffinity or topologySpreadConstraints with topologyKey: "kubernetes.io/hostname" to distribute pods across GKE nodes and availability zones.
  • PodDisruptionBudget: For deployments with >1 replica, declare a PodDisruptionBudget to guarantee minimum replica availability during voluntary GKE node upgrades and maintenance cycles.

8. Updates & Server-Side Apply Reconciliations

  • Stable List Keys: Under Kubernetes Server-Side Apply (SSA), elements in associative lists (like volumes, volume mounts, ports, and container definitions) are matched and merged by their unique identifier keys (typically name). You must keep the name key stable when modifying properties of an existing list item. Renaming the name key will cause SSA to create a brand new entry and leave the old entry intact (orphaned) rather than modifying it.
  • Minimal Diff: Make only the changes requested. Adhere closely to existing labels, annotations, and conventions.

Specialty Workloads: GKE AI/Inference Serving (vLLM, TGI, etc.)

For model serving workloads, prioritize using optimized tooling like GKE Inference Quickstart if available. If generating manually:

  1. GPU Request & Allocation:
    • Always request nvidia.com/gpu in both requests and limits.
    • Add a nodeSelector or node affinity targeting the desired GKE accelerator tag (e.g., cloud.google.com/gke-accelerator: nvidia-l4).
  2. Shared Memory Boost:
    • Model servers require high shared memory (/dev/shm) for inter-process communications. Always declare and mount an emptyDir volume with medium: Memory to /dev/shm.
  3. Weight Loading Optimization:
    • Mount model weight directories (like GCS buckets) using the GKE GCS Fuse CSI driver (csi.storage.gke.io) as readOnly: true for efficient cold-starts.

Tooling & Grounding Guidelines

When generating manifests, you should leverage the following tooling to reduce hallucinations and optimize configurations:

  1. Inference Workloads (GKE Inference Quickstart CLI):

    • Make sure you have the Google Cloud SDK installed.

    • For all AI/LLM inference workloads (e.g. model serving), you must prioritize using the gcloud CLI GKE Inference Quickstart command to generate the optimized manifests instead of writing them manually:

      gcloud container ai profiles manifests create \
        --model={model_name} \
        --model-server={server_name} \
        --accelerator-type={accelerator_type} \
        --output=manifest \
        --output-path={output_file_path}
      
    • Constraint: You must include all resources returned by this command (Deployments, Services, PodMonitoring, etc.) without filtering.

  2. Grounding in Official Documentation (Developer Knowledge API):

    • For GKE-specific features, API defaults, manifest examples, or security contexts, you must query Google's developer knowledge base to retrieve official GKE documentation:
      • answer_query: Use this to ask direct questions (e.g., "How to configure GCS Fuse CSI driver in GKE"). This is the preferred tool for general queries.
      • search_documents: Use this to search for relevant GKE guides or examples when you don't have a specific question.
      • get_document: Use this to fetch full document contents when you have a specific document ID.

Reference Examples

For detailed, production-ready manifest templates, consult the following reference guides:

  • Basic Hardened Nginx Workload: Production-ready deployment with dedicated service account, security contexts, probes, anti-affinity, and PodDisruptionBudget.
  • Network Policy: Default-deny ingress network policy and selective ingress allowance for specific apps.
  • AI/LLM Inference Workload: GPU resource allocation, Workload Identity, GCS FUSE CSI driver mounting, /dev/shm shared memory boost, and startup probes.
  • GKE Gateway API Routing: Exposing workloads using GKE L7 Gateway API (Gateway and HTTPRoute resources).
Files5
5 files · 19.3 KB

Select a file to preview

Overall Score

85/100

Grade

A

Excellent

Safety

88

Quality

87

Clarity

85

Completeness

80

Summary

Generates and updates secure, production-ready Kubernetes YAML manifests optimized for GKE Autopilot and GKE Standard clusters. Provides comprehensive guidelines covering namespace isolation, resource tuning, container security hardening, health checking, routing, and specialized AI/inference workloads with reference examples for common patterns.

Static Analysis Findings

1 finding

Patterns detected by deterministic static analysis before AI scoring. Hover over any finding code for detailed information and remediation guidance.

Command Injection
SEC-011Dynamic Shell Eval

Shell eval/exec of dynamic content

SKILL.mdexec`

Detected Capabilities

Kubernetes manifest generationYAML structure guidanceGKE configuration best practicesSecurity context enforcementResource allocation tuningHealth probe configurationVolume and storage managementNetwork policy definitionGateway API routing

Trigger Keywords

Phrases that MCP clients use to match this skill to user intent.

create gke deploymentkubernetes manifest generationgke autopilot configurationcontainer security hardeninggpu workload deploymentllm model servinggateway api routingspot vm cost optimization

Risk Signals

INFO

SEC-011: Shell exec/exec of dynamic content detected in startup probe and liveness probe examples

SKILL.md | Section 4 (Health Checking)
INFO

Reference to gcloud command with external API invocation

SKILL.md | Section 'Tooling & Grounding Guidelines', subsection 1
INFO

References to Google Cloud SDK and cloud.google.com domain for GCP authentication

SKILL.md | Multiple sections

Referenced Domains

External domains referenced in skill content, detected by static analysis.

cloud.google.comwww.apache.org

Use Cases

  • Create GKE deployment manifests with security hardening
  • Configure container resource limits and requests for Autopilot and Standard
  • Define health checks and startup probes for slow-starting applications
  • Deploy AI/LLM inference models (vLLM, TGI) with GPU support and GCS FUSE
  • Expose workloads using GKE Gateway API for advanced L7 routing
  • Set up pod anti-affinity and disruption budgets for high availability
  • Mount secrets securely as read-only files instead of environment variables
  • Optimize non-production workloads to use GKE Spot VMs for cost reduction

Quality Notes

  • Excellent: comprehensive security baselines covering non-root execution, read-only filesystems, seccomp, and capability dropping
  • Excellent: clear differentiation between GKE Autopilot and GKE Standard with specific cost implications (e.g., requests=limits on Autopilot)
  • Excellent: production-ready reference examples with all four reference files present and properly formatted
  • Excellent: structured rules with explicit 'must' and 'should' guidance, making agent implementation clear and unambiguous
  • Good: covers edge cases like Java/Nginx requiring writable /tmp directories and subPath volume mount caveats
  • Good: explicit guardrails on resource overcommit ratios to prevent CPU throttling
  • Minor: tooling section references external tools (gcloud CLI, Developer Knowledge API) without full implementation details; agent must have these tools available
  • Minor: network policy example is minimal; could include more complex ingress/egress scenarios
Model: claude-haiku-4-5-20251001Analyzed: Jul 29, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Use google/gke-manifest-generation in your dev environment

Command Palette

Search for a command to run...