AgentStack
SKILL verified Apache-2.0 Self-run

Gke Backup Dr

skill-google-skills-gke-backup-dr · by google

>-

No reviews yet
0 installs
6 views
0.0% view→install

Install

$ agentstack add skill-google-skills-gke-backup-dr

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Gke Backup Dr? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

GKE Backup & Disaster Recovery

Protects stateful GKE workloads using Backup for GKE.

CLI Reference

# Enable GKE Backup addon (Slow cluster-level update)
gcloud container clusters update  --enable-gke-backup --region  --quiet

# Create Backup Plan
gcloud container backup-restore backup-plans create  \
  --cluster= --location= \
  --retention-days= --cron-schedule="" --all-namespaces --quiet

# Trigger Manual Backup
gcloud container backup-restore backups create  \
  --backup-plan= --location= --quiet

# Create Restore Plan
gcloud container backup-restore restore-plans create  \
  --cluster= --location= --backup-plan= \
  --cluster-resource-conflict-policy=USE_EXISTING_VERSION --namespaced-resource-restore-mode=FAIL_ON_CONFLICT --quiet

# Execute Restore
gcloud container backup-restore restores create  \
  --restore-plan= --backup= --location= --quiet

Best Practices

  1. CMEK Encryption: Encrypt backup plans using Customer-Managed Encryption

Keys: --backup-encryption-key=.

  1. Scope: Prefer backing up specific namespaces rather than the entire

cluster: --included-namespaces=,.

Troubleshooting & Common Pitfalls (CRITICAL)

> [!IMPORTANT] Slow Operations: Enabling GKE Backup (--enable-gke-backup) > triggers a slow Google Cloud control plane cluster update that takes several > minutes. Rule: Do not run a terminal loop waiting for the GKE Backup > addon to become active. Action: Provide the command to enable the > addon, explain that the operation will proceed in the background, and > immediately proceed to write the backup plan configs. Do not block.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.