finding-google-skills
Locates and loads the right Google product skill on demand from a remote catalog index, instead of preloading every skill. Use at the START of any request…
Manages GKE application onboarding, covering containerization, deployment manifests, and migration. Use when onboarding or deploying an application to GKE for the first time, or containerizing an app for GKE. Don't use for general GKE cluster administration or upgrades (use
$ npx -y skills add google/skills --skill gke-app-onboarding --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/gke-app-onboardingContext preview
The summary Claude sees to decide when to auto-load this skill.
Manages GKE application onboarding, covering containerization, deployment manifests, and migration. Use when onboarding or deploying an application to GKE for the first time, or containerizing an app for GKE. Don't use for general GKE cluster administration or upgrades (use
name: gke-app-onboarding description: >- Manages GKE application onboarding, covering containerization, deployment manifests, and migration. Use when onboarding or deploying an application to GKE for the first time, or containerizing an app for GKE. Don't use for general GKE cluster administration or upgrades (use gke-basics or gke-upgrades instead). metadata: category: Containers
This reference provides workflows for containerizing and deploying applications to GKE for the first time.
> **MCP Tools:** `apply_k8s_manifest`, `get_k8s_resource`, > `get_k8s_rollout_status`, `get_k8s_logs`, `describe_k8s_resource`
Before containerizing, assess the application:
secrets)
Create a container image. A Dockerfile with a multi-stage build is recommended for most apps — see the Go Dockerfile in [`references/go-example.md`](./references/go-example.md) for a worked example.
**Best practices:**
A complete worked Node.js example is provided in [`assets/`](./assets/): [`Dockerfile`](./assets/Dockerfile) (non-root `node` user), [`index.js`](./assets/index.js) (implements distinct `/healthz` and `/readyz` endpoints), [`package.json`](./assets/package.json), and [`deployment.yaml`](./assets/deployment.yaml) (hardened Deployment plus ClusterIP Service, probes wired to `/healthz` and `/readyz`).
For applications where writing a Dockerfile is not preferred, you can use [**Cloud Native Buildpacks**](https://buildpacks.io/) to automatically detect the language and build a container image:
pack build <image> --builder gcr.io/buildpacks/builder:latest
Build and store the container image:
# Configure Docker for Artifact Registry gcloud auth configure-docker <REGION>-docker.pkg.dev --quiet # Build and push docker build -t <REGION>-docker.pkg.dev/<PROJECT>/<REPO>/<IMAGE>:<TAG> . docker push <REGION>-docker.pkg.dev/<PROJECT>/<REPO>/<IMAGE>:<TAG>
**Vulnerability scanning**: Enable automatic scanning in Artifact Registry to detect issues in base images and dependencies.
# Check scan results gcloud artifacts docker images describe \ <REGION>-docker.pkg.dev/<PROJECT>/<REPO>/<IMAGE>:<TAG> \ --show-package-vulnerability \ --quiet
Generate Kubernetes manifests for the application. A baseline Deployment + ClusterIP Service manifest (probes, resource requests/limits, 2 replicas) is in [`references/go-example.md`](./references/go-example.md).
**Checklist for manifests:**
external)
See [`assets/deployment.yaml`](./assets/deployment.yaml) for a hardened worked example. A production-hardened pod spec must include ALL of: `runAsNonRoot: true`, `readOnlyRootFilesystem: true`, `allowPrivilegeEscalation: false`, `capabilities.drop: ["ALL"]`, `seccompProfile: {type: RuntimeDefault}`, `automountServiceAccountToken: false` (unless the pod needs the token — then say why), resource requests, digest-pinned image, and a ClusterIP Service.
That checklist is the baseline for any pod spec produced here. For manifest work beyond it — Gateway API routes, GCS FUSE and secret volume mounting, `subPath` overlays, Spot VM targeting, or AI/inference serving specs — see `gke-manifest-generation`.
# MCP (preferred) apply_k8s_manifest(parent="projects/<PROJECT>/locations/<REGION>/clusters/<CLUSTER>", yamlManifest="<manifest>") # Verify get_k8s_rollout_status(parent="...", resourceType="deployment", name="my-app") get_k8s_resource(parent="...", resourceType="pod", labelSelector="app=my-app")
**kubectl fallback:**
kubectl apply -f manifests/ kubectl rollout status deployment/my-app kubectl get pods -l app=my-app
For every production application onboarding to GKE:
1. **Container Security**: Non-root user (`runAsNonRoot: true`), lockfile install, minimal/distroless base image. 2. **Resource Requests**: Explicit CPU and memory requests (mandatory for GKE Autopilot). 3. **Health Probes**: Both liveness (`livenessProbe`) and readiness (`readinessProbe`) probes configured. 4. **Reliability & Availability**: At least 2 replicas and a `PodDisruptionBudget` (`minAvailable: 1` or `2`). 5. **IAM & Workload Identity**: Workload Identity (`iam.gke.io/gcp-service-account`) instead of static service account keys.
Once the application is running on GKE:
skill
This repository contains Agent Skills for Google products and technologies, including Google Cloud.
Repo: google/skills
Locates and loads the right Google product skill on demand from a remote catalog index, instead of preloading every skill. Use at the START of any request…
Provides safety-critical validation, guardrails, and data reduction for gcloud CLI operations across Google Cloud Platform (GCP) services and infrastructure.…
Provides expert guidance on authenticating and authorizing to Google Cloud services and APIs, covering human users, service identities, Application Default…
Guides a developer's first steps on Google Cloud, covering account creation, billing setup, project management, and deploying a first resource. Use when a new…
Searches, retrieves, and synthesizes official Google developer documentation across Google Cloud, AI/Gemini, Android, Chrome, Web, Flutter, Go, Firebase, and…
Guides developers through managing (adding, removing, and clearing) audience members for Google products using the Data Manager API and its associated client…