From gcp-gke
Use this skill whenever the user needs to configure a GKE cluster for Datadog monitoring. Triggers on mentions of GKE setup, GKE private cluster egress, Cloud NAT for GKE, or preparing a GKE cluster for Datadog agent deployment.
How this skill is triggered — by the user, by Claude, or both
Slash command
/gcp-gke:setup-gke-clusterThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Configure a GKE Standard cluster for Datadog monitoring, including egress configuration for private clusters.
Configure a GKE Standard cluster for Datadog monitoring, including egress configuration for private clusters.
gcloud CLI authenticatedgcloud container clusters get-credentials <CLUSTER_NAME> --region <REGION>
kubectl get nodes
Private GKE clusters need Cloud NAT for the Datadog Agent to reach intake endpoints (*.datadoghq.com):
# Create a Cloud Router
gcloud compute routers create <ROUTER_NAME> \
--network=<VPC_NAME> \
--region=<REGION>
# Create Cloud NAT
gcloud compute routers nats create <NAT_NAME> \
--router=<ROUTER_NAME> \
--region=<REGION> \
--auto-allocate-nat-external-ips \
--nat-all-subnet-ip-ranges
gcloud container clusters list --format="value(name)"
You will need this for the install-dd-operator skill to set clusterName in the agent configuration.
# Verify egress works (from a test pod)
kubectl run test-egress --image=curlimages/curl --rm -it --restart=Never -- \
curl -s -o /dev/null -w "%{http_code}" https://api.datadoghq.com
# Expected: 200 or 403 (reachable)
Cause: No Cloud NAT configured for the VPC. Fix: Create Cloud NAT as described in Step 2.
Searches MemPalace before answering questions about past work, people, projects, or prior decisions. Returns verbatim stored content instead of guessing from model memory.
Guides Payload CMS config (payload.config.ts), collections, fields, hooks, access control, APIs. Debugs validation errors, security, relationships, queries, transactions, hook behavior.
Implements vector databases with Pinecone, Weaviate, Qdrant, Milvus, pgvector for semantic search, RAG, recommendations, and similarity systems. Optimizes embeddings, indexing, and hybrid search.
npx claudepluginhub jek-bao-choo/datadog-agentic-plugins --plugin gcp-gke