The official Genkit skill for Node.js and TypeScript — flows, Dotprompt files, tools and the beta agent API with sessions, interrupts and branching.
GKE Basics & Critical Gotchas
Summary
Google's official GKE skill — when Autopilot beats Standard, Workload Identity instead of JSON keys, Autopilot's 250m CPU rounding, and private-cluster flags.
Features
- Autopilot-by-default with the three explicit reasons to pick Standard
- Workload Identity binding instead of mounted service-account keys
- Autopilot's 250m CPU increment and requests-equal-limits behaviour
- Private cluster and master-authorised-network flags in full
- Explicit hand-off to the specialised GKE networking, security and upgrade skills
Install This Skill
Add this skill to your favorite AI agent in a few steps.
Skill Content
Usage Instructions
Learn how to use this skill with different AI agents.
Example Usage
"Create a private Autopilot cluster in us-central1, wire up Workload Identity for the billing service account, and deploy this manifest."
Description
Most GKE mistakes are made in the first ten minutes: reaching for Standard mode out of habit, mounting a service-account JSON key into a pod, or requesting 300m of CPU on Autopilot and quietly paying for 500m.
This official Google skill is written as a decision guide rather than a tutorial. It defaults to Autopilot and names the only three reasons to choose Standard — custom sysctl kernel parameters, custom node taints or specific hardware node pools, and DaemonSets needing raw hostPath mounts — and asks the agent to cite which one applies. From there it covers private Autopilot clusters (--enable-private-nodes, --enable-private-endpoint, master authorised networks), Workload Identity binding a Kubernetes ServiceAccount to a Google Service Account via annotation, Autopilot's 250m CPU increment rule and its requests-equal-limits behaviour, and always passing --region or --zone when fetching credentials.
It is deliberately scoped: specialised networking, security hardening and upgrades live in sibling skills (gke-networking, gke-platform-security, gke-workload-security, gke-upgrades), so the agent knows when to hand off rather than guess.
Related Skills
An agentic software-development methodology: composable skills that push a coding agent through spec, plan, TDD and review instead of straight into code.
Tencent's skill-evolution harness: it rewrites a whole skill folder — SKILL.md, scripts and references together — and lands every decision as a real Git issue, PR and wiki entry you can review.
Take an OpenSearch search application from requirements to a running cluster — BM25, dense and sparse vectors, hybrid retrieval, agentic search and RAG, with relevance evaluation built in.