[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-google-cloud-gke-storage":3,"mdc-sa0q4n-key":31,"related-repo-google-cloud-gke-storage":653,"related-org-google-cloud-gke-storage":753},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":21,"repoUrl":22,"updatedAt":23,"license":24,"forks":25,"topics":26,"repo":27,"sourceUrl":29,"mdContent":30},"gke-storage","manage storage in GKE clusters","Guidance on managing storage in Google Kubernetes Engine (GKE) clusters.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"google-cloud","Google Cloud","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fgoogle-cloud.png","GoogleCloudPlatform",[13,17,20],{"name":14,"slug":15,"type":16},"Kubernetes","kubernetes","tag",{"name":18,"slug":19,"type":16},"Storage","storage",{"name":9,"slug":8,"type":16},161,"https:\u002F\u002Fgithub.com\u002FGoogleCloudPlatform\u002Fgke-mcp","2026-07-12T07:39:36.220939",null,78,[],{"repoUrl":22,"stars":21,"forks":25,"topics":28,"description":24},[],"https:\u002F\u002Fgithub.com\u002FGoogleCloudPlatform\u002Fgke-mcp\u002Ftree\u002FHEAD\u002Fskills\u002Fgke-storage","---\nname: gke-storage\ndescription: Guidance on managing storage in Google Kubernetes Engine (GKE) clusters.\n---\n\n# GKE Storage Best Practices\n\nThis skill provides guidance on managing storage in Google Kubernetes Engine (GKE) clusters.\n\n## Overview\n\nGKE supports various storage options, from Persistent Disks to Cloud Storage. Choosing the right storage type and configuring it correctly is essential for performance and reliability.\n\n## Workflows\n\n### 1. Configure Storage Classes\n\nStorageClasses allow you to describe the \"classes\" of storage you offer. Different classes might map to quality-of-service levels, or to backup policies.\n\n**Example StorageClass Manifest:**\n\n```yaml\napiVersion: storage.k8s.io\u002Fv1\nkind: StorageClass\nmetadata:\n  name: premium-rwo\nprovisioner: pd.csi.storage.gke.io\nparameters:\n  type: pd-ssd\n  replication-type: regional-pd\nvolumeBindingMode: WaitForFirstConsumer\nallowVolumeExpansion: true\n```\n\nSetting `allowVolumeExpansion: true` is highly recommended for production.\n\n### 2. Use CSI Drivers\n\nGKE includes container storage interface (CSI) drivers for dynamic provisioning of storage.\n\n- **Compute Engine Persistent Disk CSI Driver**: Default for block storage.\n- **Google Cloud Filestore CSI Driver**: For managed NFS (ReadWriteMany).\n- **Cloud Storage FUSE CSI Driver**: For mounting GCS buckets as volumes.\n\n**Example using Filestore CSI Driver:**\n\n```yaml\napiVersion: v1\nkind: PersistentVolumeClaim\nmetadata:\n  name: filestore-pvc\nspec:\n  accessModes:\n    - ReadWriteMany\n  storageClassName: standard-rwm # Pre-defined for Filestore\n  resources:\n    requests:\n      storage: 1Ti\n```\n\n### 3. Implement Volume Expansion\n\nIf `allowVolumeExpansion` is true in the StorageClass, you can resize a volume by updating the PVC manifest.\n\n**Steps:**\n\n1. Edit the PVC manifest and increase the storage request.\n2. Apply the changes.\n\nKubernetes will automatically resize the file system on the volume.\n\n## Best Practices\n\n1. **Use CSI Drivers**: Always use the official Google Cloud CSI drivers for best integration and performance.\n2. **Enable Volume Expansion**: Always set `allowVolumeExpansion: true` in your StorageClasses to allow for growth.\n3. **Choose the Right Disk Type**: Use `pd-ssd` or `pd-extreme` for I\u002FO intensive workloads, and `pd-standard` or `pd-balanced` for others.\n4. **Use ReadWriteMany Carefully**: Filestore (NFS) is great for sharing data among multiple Pods, but be aware of file locking and consistency semantics.\n",{"data":32,"body":33},{"name":4,"description":6},{"type":34,"children":35},"root",[36,45,51,58,63,69,76,81,90,280,293,299,304,339,347,515,521,533,541,555,560,566,647],{"type":37,"tag":38,"props":39,"children":41},"element","h1",{"id":40},"gke-storage-best-practices",[42],{"type":43,"value":44},"text","GKE Storage Best Practices",{"type":37,"tag":46,"props":47,"children":48},"p",{},[49],{"type":43,"value":50},"This skill provides guidance on managing storage in Google Kubernetes Engine (GKE) clusters.",{"type":37,"tag":52,"props":53,"children":55},"h2",{"id":54},"overview",[56],{"type":43,"value":57},"Overview",{"type":37,"tag":46,"props":59,"children":60},{},[61],{"type":43,"value":62},"GKE supports various storage options, from Persistent Disks to Cloud Storage. Choosing the right storage type and configuring it correctly is essential for performance and reliability.",{"type":37,"tag":52,"props":64,"children":66},{"id":65},"workflows",[67],{"type":43,"value":68},"Workflows",{"type":37,"tag":70,"props":71,"children":73},"h3",{"id":72},"_1-configure-storage-classes",[74],{"type":43,"value":75},"1. Configure Storage Classes",{"type":37,"tag":46,"props":77,"children":78},{},[79],{"type":43,"value":80},"StorageClasses allow you to describe the \"classes\" of storage you offer. Different classes might map to quality-of-service levels, or to backup policies.",{"type":37,"tag":46,"props":82,"children":83},{},[84],{"type":37,"tag":85,"props":86,"children":87},"strong",{},[88],{"type":43,"value":89},"Example StorageClass Manifest:",{"type":37,"tag":91,"props":92,"children":97},"pre",{"className":93,"code":94,"language":95,"meta":96,"style":96},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","apiVersion: storage.k8s.io\u002Fv1\nkind: StorageClass\nmetadata:\n  name: premium-rwo\nprovisioner: pd.csi.storage.gke.io\nparameters:\n  type: pd-ssd\n  replication-type: regional-pd\nvolumeBindingMode: WaitForFirstConsumer\nallowVolumeExpansion: true\n","yaml","",[98],{"type":37,"tag":99,"props":100,"children":101},"code",{"__ignoreMap":96},[102,126,144,158,176,194,207,225,243,261],{"type":37,"tag":103,"props":104,"children":107},"span",{"class":105,"line":106},"line",1,[108,114,120],{"type":37,"tag":103,"props":109,"children":111},{"style":110},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[112],{"type":43,"value":113},"apiVersion",{"type":37,"tag":103,"props":115,"children":117},{"style":116},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[118],{"type":43,"value":119},":",{"type":37,"tag":103,"props":121,"children":123},{"style":122},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[124],{"type":43,"value":125}," storage.k8s.io\u002Fv1\n",{"type":37,"tag":103,"props":127,"children":129},{"class":105,"line":128},2,[130,135,139],{"type":37,"tag":103,"props":131,"children":132},{"style":110},[133],{"type":43,"value":134},"kind",{"type":37,"tag":103,"props":136,"children":137},{"style":116},[138],{"type":43,"value":119},{"type":37,"tag":103,"props":140,"children":141},{"style":122},[142],{"type":43,"value":143}," StorageClass\n",{"type":37,"tag":103,"props":145,"children":147},{"class":105,"line":146},3,[148,153],{"type":37,"tag":103,"props":149,"children":150},{"style":110},[151],{"type":43,"value":152},"metadata",{"type":37,"tag":103,"props":154,"children":155},{"style":116},[156],{"type":43,"value":157},":\n",{"type":37,"tag":103,"props":159,"children":161},{"class":105,"line":160},4,[162,167,171],{"type":37,"tag":103,"props":163,"children":164},{"style":110},[165],{"type":43,"value":166},"  name",{"type":37,"tag":103,"props":168,"children":169},{"style":116},[170],{"type":43,"value":119},{"type":37,"tag":103,"props":172,"children":173},{"style":122},[174],{"type":43,"value":175}," premium-rwo\n",{"type":37,"tag":103,"props":177,"children":179},{"class":105,"line":178},5,[180,185,189],{"type":37,"tag":103,"props":181,"children":182},{"style":110},[183],{"type":43,"value":184},"provisioner",{"type":37,"tag":103,"props":186,"children":187},{"style":116},[188],{"type":43,"value":119},{"type":37,"tag":103,"props":190,"children":191},{"style":122},[192],{"type":43,"value":193}," pd.csi.storage.gke.io\n",{"type":37,"tag":103,"props":195,"children":197},{"class":105,"line":196},6,[198,203],{"type":37,"tag":103,"props":199,"children":200},{"style":110},[201],{"type":43,"value":202},"parameters",{"type":37,"tag":103,"props":204,"children":205},{"style":116},[206],{"type":43,"value":157},{"type":37,"tag":103,"props":208,"children":210},{"class":105,"line":209},7,[211,216,220],{"type":37,"tag":103,"props":212,"children":213},{"style":110},[214],{"type":43,"value":215},"  type",{"type":37,"tag":103,"props":217,"children":218},{"style":116},[219],{"type":43,"value":119},{"type":37,"tag":103,"props":221,"children":222},{"style":122},[223],{"type":43,"value":224}," pd-ssd\n",{"type":37,"tag":103,"props":226,"children":228},{"class":105,"line":227},8,[229,234,238],{"type":37,"tag":103,"props":230,"children":231},{"style":110},[232],{"type":43,"value":233},"  replication-type",{"type":37,"tag":103,"props":235,"children":236},{"style":116},[237],{"type":43,"value":119},{"type":37,"tag":103,"props":239,"children":240},{"style":122},[241],{"type":43,"value":242}," regional-pd\n",{"type":37,"tag":103,"props":244,"children":246},{"class":105,"line":245},9,[247,252,256],{"type":37,"tag":103,"props":248,"children":249},{"style":110},[250],{"type":43,"value":251},"volumeBindingMode",{"type":37,"tag":103,"props":253,"children":254},{"style":116},[255],{"type":43,"value":119},{"type":37,"tag":103,"props":257,"children":258},{"style":122},[259],{"type":43,"value":260}," WaitForFirstConsumer\n",{"type":37,"tag":103,"props":262,"children":264},{"class":105,"line":263},10,[265,270,274],{"type":37,"tag":103,"props":266,"children":267},{"style":110},[268],{"type":43,"value":269},"allowVolumeExpansion",{"type":37,"tag":103,"props":271,"children":272},{"style":116},[273],{"type":43,"value":119},{"type":37,"tag":103,"props":275,"children":277},{"style":276},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[278],{"type":43,"value":279}," true\n",{"type":37,"tag":46,"props":281,"children":282},{},[283,285,291],{"type":43,"value":284},"Setting ",{"type":37,"tag":99,"props":286,"children":288},{"className":287},[],[289],{"type":43,"value":290},"allowVolumeExpansion: true",{"type":43,"value":292}," is highly recommended for production.",{"type":37,"tag":70,"props":294,"children":296},{"id":295},"_2-use-csi-drivers",[297],{"type":43,"value":298},"2. Use CSI Drivers",{"type":37,"tag":46,"props":300,"children":301},{},[302],{"type":43,"value":303},"GKE includes container storage interface (CSI) drivers for dynamic provisioning of storage.",{"type":37,"tag":305,"props":306,"children":307},"ul",{},[308,319,329],{"type":37,"tag":309,"props":310,"children":311},"li",{},[312,317],{"type":37,"tag":85,"props":313,"children":314},{},[315],{"type":43,"value":316},"Compute Engine Persistent Disk CSI Driver",{"type":43,"value":318},": Default for block storage.",{"type":37,"tag":309,"props":320,"children":321},{},[322,327],{"type":37,"tag":85,"props":323,"children":324},{},[325],{"type":43,"value":326},"Google Cloud Filestore CSI Driver",{"type":43,"value":328},": For managed NFS (ReadWriteMany).",{"type":37,"tag":309,"props":330,"children":331},{},[332,337],{"type":37,"tag":85,"props":333,"children":334},{},[335],{"type":43,"value":336},"Cloud Storage FUSE CSI Driver",{"type":43,"value":338},": For mounting GCS buckets as volumes.",{"type":37,"tag":46,"props":340,"children":341},{},[342],{"type":37,"tag":85,"props":343,"children":344},{},[345],{"type":43,"value":346},"Example using Filestore CSI Driver:",{"type":37,"tag":91,"props":348,"children":350},{"className":93,"code":349,"language":95,"meta":96,"style":96},"apiVersion: v1\nkind: PersistentVolumeClaim\nmetadata:\n  name: filestore-pvc\nspec:\n  accessModes:\n    - ReadWriteMany\n  storageClassName: standard-rwm # Pre-defined for Filestore\n  resources:\n    requests:\n      storage: 1Ti\n",[351],{"type":37,"tag":99,"props":352,"children":353},{"__ignoreMap":96},[354,370,386,397,413,425,437,450,473,485,497],{"type":37,"tag":103,"props":355,"children":356},{"class":105,"line":106},[357,361,365],{"type":37,"tag":103,"props":358,"children":359},{"style":110},[360],{"type":43,"value":113},{"type":37,"tag":103,"props":362,"children":363},{"style":116},[364],{"type":43,"value":119},{"type":37,"tag":103,"props":366,"children":367},{"style":122},[368],{"type":43,"value":369}," v1\n",{"type":37,"tag":103,"props":371,"children":372},{"class":105,"line":128},[373,377,381],{"type":37,"tag":103,"props":374,"children":375},{"style":110},[376],{"type":43,"value":134},{"type":37,"tag":103,"props":378,"children":379},{"style":116},[380],{"type":43,"value":119},{"type":37,"tag":103,"props":382,"children":383},{"style":122},[384],{"type":43,"value":385}," PersistentVolumeClaim\n",{"type":37,"tag":103,"props":387,"children":388},{"class":105,"line":146},[389,393],{"type":37,"tag":103,"props":390,"children":391},{"style":110},[392],{"type":43,"value":152},{"type":37,"tag":103,"props":394,"children":395},{"style":116},[396],{"type":43,"value":157},{"type":37,"tag":103,"props":398,"children":399},{"class":105,"line":160},[400,404,408],{"type":37,"tag":103,"props":401,"children":402},{"style":110},[403],{"type":43,"value":166},{"type":37,"tag":103,"props":405,"children":406},{"style":116},[407],{"type":43,"value":119},{"type":37,"tag":103,"props":409,"children":410},{"style":122},[411],{"type":43,"value":412}," filestore-pvc\n",{"type":37,"tag":103,"props":414,"children":415},{"class":105,"line":178},[416,421],{"type":37,"tag":103,"props":417,"children":418},{"style":110},[419],{"type":43,"value":420},"spec",{"type":37,"tag":103,"props":422,"children":423},{"style":116},[424],{"type":43,"value":157},{"type":37,"tag":103,"props":426,"children":427},{"class":105,"line":196},[428,433],{"type":37,"tag":103,"props":429,"children":430},{"style":110},[431],{"type":43,"value":432},"  accessModes",{"type":37,"tag":103,"props":434,"children":435},{"style":116},[436],{"type":43,"value":157},{"type":37,"tag":103,"props":438,"children":439},{"class":105,"line":209},[440,445],{"type":37,"tag":103,"props":441,"children":442},{"style":116},[443],{"type":43,"value":444},"    -",{"type":37,"tag":103,"props":446,"children":447},{"style":122},[448],{"type":43,"value":449}," ReadWriteMany\n",{"type":37,"tag":103,"props":451,"children":452},{"class":105,"line":227},[453,458,462,467],{"type":37,"tag":103,"props":454,"children":455},{"style":110},[456],{"type":43,"value":457},"  storageClassName",{"type":37,"tag":103,"props":459,"children":460},{"style":116},[461],{"type":43,"value":119},{"type":37,"tag":103,"props":463,"children":464},{"style":122},[465],{"type":43,"value":466}," standard-rwm",{"type":37,"tag":103,"props":468,"children":470},{"style":469},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[471],{"type":43,"value":472}," # Pre-defined for Filestore\n",{"type":37,"tag":103,"props":474,"children":475},{"class":105,"line":245},[476,481],{"type":37,"tag":103,"props":477,"children":478},{"style":110},[479],{"type":43,"value":480},"  resources",{"type":37,"tag":103,"props":482,"children":483},{"style":116},[484],{"type":43,"value":157},{"type":37,"tag":103,"props":486,"children":487},{"class":105,"line":263},[488,493],{"type":37,"tag":103,"props":489,"children":490},{"style":110},[491],{"type":43,"value":492},"    requests",{"type":37,"tag":103,"props":494,"children":495},{"style":116},[496],{"type":43,"value":157},{"type":37,"tag":103,"props":498,"children":500},{"class":105,"line":499},11,[501,506,510],{"type":37,"tag":103,"props":502,"children":503},{"style":110},[504],{"type":43,"value":505},"      storage",{"type":37,"tag":103,"props":507,"children":508},{"style":116},[509],{"type":43,"value":119},{"type":37,"tag":103,"props":511,"children":512},{"style":122},[513],{"type":43,"value":514}," 1Ti\n",{"type":37,"tag":70,"props":516,"children":518},{"id":517},"_3-implement-volume-expansion",[519],{"type":43,"value":520},"3. Implement Volume Expansion",{"type":37,"tag":46,"props":522,"children":523},{},[524,526,531],{"type":43,"value":525},"If ",{"type":37,"tag":99,"props":527,"children":529},{"className":528},[],[530],{"type":43,"value":269},{"type":43,"value":532}," is true in the StorageClass, you can resize a volume by updating the PVC manifest.",{"type":37,"tag":46,"props":534,"children":535},{},[536],{"type":37,"tag":85,"props":537,"children":538},{},[539],{"type":43,"value":540},"Steps:",{"type":37,"tag":542,"props":543,"children":544},"ol",{},[545,550],{"type":37,"tag":309,"props":546,"children":547},{},[548],{"type":43,"value":549},"Edit the PVC manifest and increase the storage request.",{"type":37,"tag":309,"props":551,"children":552},{},[553],{"type":43,"value":554},"Apply the changes.",{"type":37,"tag":46,"props":556,"children":557},{},[558],{"type":43,"value":559},"Kubernetes will automatically resize the file system on the volume.",{"type":37,"tag":52,"props":561,"children":563},{"id":562},"best-practices",[564],{"type":43,"value":565},"Best Practices",{"type":37,"tag":542,"props":567,"children":568},{},[569,579,596,637],{"type":37,"tag":309,"props":570,"children":571},{},[572,577],{"type":37,"tag":85,"props":573,"children":574},{},[575],{"type":43,"value":576},"Use CSI Drivers",{"type":43,"value":578},": Always use the official Google Cloud CSI drivers for best integration and performance.",{"type":37,"tag":309,"props":580,"children":581},{},[582,587,589,594],{"type":37,"tag":85,"props":583,"children":584},{},[585],{"type":43,"value":586},"Enable Volume Expansion",{"type":43,"value":588},": Always set ",{"type":37,"tag":99,"props":590,"children":592},{"className":591},[],[593],{"type":43,"value":290},{"type":43,"value":595}," in your StorageClasses to allow for growth.",{"type":37,"tag":309,"props":597,"children":598},{},[599,604,606,612,614,620,622,628,629,635],{"type":37,"tag":85,"props":600,"children":601},{},[602],{"type":43,"value":603},"Choose the Right Disk Type",{"type":43,"value":605},": Use ",{"type":37,"tag":99,"props":607,"children":609},{"className":608},[],[610],{"type":43,"value":611},"pd-ssd",{"type":43,"value":613}," or ",{"type":37,"tag":99,"props":615,"children":617},{"className":616},[],[618],{"type":43,"value":619},"pd-extreme",{"type":43,"value":621}," for I\u002FO intensive workloads, and ",{"type":37,"tag":99,"props":623,"children":625},{"className":624},[],[626],{"type":43,"value":627},"pd-standard",{"type":43,"value":613},{"type":37,"tag":99,"props":630,"children":632},{"className":631},[],[633],{"type":43,"value":634},"pd-balanced",{"type":43,"value":636}," for others.",{"type":37,"tag":309,"props":638,"children":639},{},[640,645],{"type":37,"tag":85,"props":641,"children":642},{},[643],{"type":43,"value":644},"Use ReadWriteMany Carefully",{"type":43,"value":646},": Filestore (NFS) is great for sharing data among multiple Pods, but be aware of file locking and consistency semantics.",{"type":37,"tag":648,"props":649,"children":650},"style",{},[651],{"type":43,"value":652},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":654,"total":752},[655,667,682,695,712,723,739],{"slug":656,"name":656,"fn":657,"description":658,"org":659,"tags":660,"stars":21,"repoUrl":22,"updatedAt":666},"custom-golden-image-discovery","discover golden base images for GKE nodes","Expert at discovering golden base images for GKE custom nodes using technical specs or context clues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[661,664,665],{"name":662,"slug":663,"type":16},"Deployment","deployment",{"name":9,"slug":8,"type":16},{"name":14,"slug":15,"type":16},"2026-07-12T07:39:30.888879",{"slug":668,"name":668,"fn":669,"description":670,"org":671,"tags":672,"stars":21,"repoUrl":22,"updatedAt":681},"gke-ai-troubleshooting-handle-disruption-gpu-tpu","diagnose GPU and TPU workload disruptions","Diagnose and predict node disruption during Compute Engine host maintenance for GPU and TPU workloads.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[673,676,677,678],{"name":674,"slug":675,"type":16},"Debugging","debugging",{"name":9,"slug":8,"type":16},{"name":14,"slug":15,"type":16},{"name":679,"slug":680,"type":16},"Performance","performance","2026-07-28T05:34:18.149515",{"slug":683,"name":683,"fn":684,"description":685,"org":686,"tags":687,"stars":21,"repoUrl":22,"updatedAt":694},"gke-ai-troubleshooting-jobset-interruption","diagnose GKE JobSet interruptions","Systematically diagnose GKE JobSet interruptions, restarts, and preemptions for AI\u002FML training workloads. Identifies preemption events, maintenance interruptions, bad host VMs, unhealthy pods, and coordinator worker failures.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[688,689,690,691],{"name":674,"slug":675,"type":16},{"name":9,"slug":8,"type":16},{"name":14,"slug":15,"type":16},{"name":692,"slug":693,"type":16},"Observability","observability","2026-07-12T07:40:04.511878",{"slug":696,"name":696,"fn":697,"description":698,"org":699,"tags":700,"stars":21,"repoUrl":22,"updatedAt":711},"gke-ai-troubleshooting-skill-creation-guide","create GKE troubleshooting skill bundles","Expert instructions for building high-quality GKE troubleshooting skills. Codifies Step 0 context rules, zero-hallucination signatures, and explicit LQL\u002FPromQL query requirements.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[701,704,707,708],{"name":702,"slug":703,"type":16},"Documentation","documentation",{"name":705,"slug":706,"type":16},"Engineering","engineering",{"name":9,"slug":8,"type":16},{"name":709,"slug":710,"type":16},"Technical Writing","technical-writing","2026-07-12T07:39:50.73484",{"slug":713,"name":713,"fn":714,"description":715,"org":716,"tags":717,"stars":21,"repoUrl":22,"updatedAt":722},"gke-ai-troubleshooting-tpu-connection-failure-vbar-oom","diagnose GKE TPU connection failures","Diagnose and prevent `vbar_control_agent` segfaults and OOMs caused by race conditions during TPU device resets and frequent metrics collection (e.g. every 3s). Use when TPU slice initialization fails or `vbar_control_agent` crashes on TPU v6e nodes.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[718,719,720,721],{"name":674,"slug":675,"type":16},{"name":9,"slug":8,"type":16},{"name":14,"slug":15,"type":16},{"name":679,"slug":680,"type":16},"2026-07-12T07:39:49.482979",{"slug":724,"name":724,"fn":725,"description":726,"org":727,"tags":728,"stars":21,"repoUrl":22,"updatedAt":738},"gke-app-onboarding","containerize and deploy apps to GKE","Workflows for containerizing and deploying applications to GKE for the first time.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[729,732,733,734,735],{"name":730,"slug":731,"type":16},"Containers","containers",{"name":662,"slug":663,"type":16},{"name":9,"slug":8,"type":16},{"name":14,"slug":15,"type":16},{"name":736,"slug":737,"type":16},"Onboarding","onboarding","2026-07-12T07:39:41.935837",{"slug":740,"name":740,"fn":741,"description":742,"org":743,"tags":744,"stars":21,"repoUrl":22,"updatedAt":751},"gke-backup-dr","configure GKE backup and disaster recovery","Workflows for configuring Backup for GKE and disaster recovery.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[745,746,747,748],{"name":662,"slug":663,"type":16},{"name":9,"slug":8,"type":16},{"name":14,"slug":15,"type":16},{"name":749,"slug":750,"type":16},"Operations","operations","2026-07-12T07:39:34.806995",25,{"items":754,"total":935},[755,771,787,807,821,830,844,861,878,891,907,917],{"slug":756,"name":756,"fn":757,"description":758,"org":759,"tags":760,"stars":768,"repoUrl":769,"updatedAt":770},"kb-search","search and extract local knowledge base documents","Allows listing, searching and extracting information from local knowledge base documents for information about tables\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[761,762,765],{"name":702,"slug":703,"type":16},{"name":763,"slug":764,"type":16},"Knowledge Base","knowledge-base",{"name":766,"slug":767,"type":16},"Search","search",6749,"https:\u002F\u002Fgithub.com\u002FGoogleCloudPlatform\u002Fknowledge-catalog","2026-07-12T07:38:52.157375",{"slug":772,"name":773,"fn":774,"description":775,"org":776,"tags":777,"stars":768,"repoUrl":769,"updatedAt":786},"knowledgecatalogdiscoveryagent","knowledge_catalog_discovery_agent","search and rank Knowledge Catalog data entries","Analyzes user queries, extracts relevant predicates, and utilizes Knowledge Catalog Search to find and rank the most relevant data entries. Engages with the user throughout the process.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[778,781,782,785],{"name":779,"slug":780,"type":16},"Data Analysis","data-analysis",{"name":9,"slug":8,"type":16},{"name":783,"slug":784,"type":16},"Knowledge Management","knowledge-management",{"name":766,"slug":767,"type":16},"2026-07-12T07:38:22.196851",{"slug":788,"name":788,"fn":789,"description":790,"org":791,"tags":792,"stars":804,"repoUrl":805,"updatedAt":806},"contributing","contribute to Cloud Foundation Fabric","End-to-end workflow for contributing to Cloud Foundation Fabric: triaging GitHub issues, proactive feature development, validating with tests and Policy Troubleshooter, and submitting sanitized Pull Requests. Use when addressing a Fabric GitHub issue, developing a module or FAST stage change, or preparing a branch for a pull request.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[793,796,797,800,801],{"name":794,"slug":795,"type":16},"Automation","automation",{"name":705,"slug":706,"type":16},{"name":798,"slug":799,"type":16},"GitHub","github",{"name":9,"slug":8,"type":16},{"name":802,"slug":803,"type":16},"Pull Requests","pull-requests",2062,"https:\u002F\u002Fgithub.com\u002FGoogleCloudPlatform\u002Fcloud-foundation-fabric","2026-07-31T06:23:36.935005",{"slug":808,"name":808,"fn":809,"description":810,"org":811,"tags":812,"stars":804,"repoUrl":805,"updatedAt":820},"fabric-builder","generate Terraform code for Google Cloud","Generates idiomatic Cloud Foundation Fabric (CFF) Terraform code using CFF modules. Use when users ask to create GCP resources, use Fabric modules, or generate Terraform code for Google Cloud.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[813,814,817],{"name":9,"slug":8,"type":16},{"name":815,"slug":816,"type":16},"Infrastructure as Code","infrastructure-as-code",{"name":818,"slug":819,"type":16},"Terraform","terraform","2026-07-12T07:38:23.514555",{"slug":822,"name":822,"fn":823,"description":824,"org":825,"tags":826,"stars":804,"repoUrl":805,"updatedAt":829},"fast-0-org-setup-prereqs","prepare prerequisites for FAST 0-org-setup","Guides the user step-by-step through the prerequisites for the FAST 0-org-setup stage, supporting both Standard GCP and Google Cloud Dedicated (GCD) environments. Use when a user asks to prepare or run prerequisites for 0-org-setup or bootstrap the FAST landing zone.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[827,828],{"name":9,"slug":8,"type":16},{"name":749,"slug":750,"type":16},"2026-07-12T07:38:28.127148",{"slug":831,"name":831,"fn":832,"description":833,"org":834,"tags":835,"stars":841,"repoUrl":842,"updatedAt":843},"agent-aware-cli","design agent-aware command-line interfaces","Guide for designing and implementing command-line interfaces (CLIs) that are equally usable by human developers and automated coding agents. Use when the user wants to build a CLI, apply CLI best practices, or use Go with Cobra and Viper.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[836,839,840],{"name":837,"slug":838,"type":16},"CLI","cli",{"name":705,"slug":706,"type":16},{"name":9,"slug":8,"type":16},1150,"https:\u002F\u002Fgithub.com\u002FGoogleCloudPlatform\u002Fvertex-ai-creative-studio","2026-07-12T07:39:08.41406",{"slug":845,"name":845,"fn":846,"description":847,"org":848,"tags":849,"stars":841,"repoUrl":842,"updatedAt":860},"build-mcp-genmedia","build and configure GenAI MCP servers","Builds the mcp-genmedia Go MCP servers (nanobanana, veo, lyria, gemini-multimodal, chirp3-hd, avtool) from source and wires them into settings.json. Use this skill whenever the MCP tools are missing or broken — typically at the start of a new session, after a container restart, or when \u002Ftmp has been wiped. The prebuilt binaries in \u002Fworkspace\u002F.local\u002Fbin\u002F have no exec bit and live on a noexec mount; this skill compiles fresh executables into \u002Ftmp\u002Fbin\u002F where execution is allowed.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[850,853,854,857],{"name":851,"slug":852,"type":16},"API Development","api-development",{"name":9,"slug":8,"type":16},{"name":855,"slug":856,"type":16},"LLM","llm",{"name":858,"slug":859,"type":16},"MCP","mcp","2026-07-12T07:39:10.911302",{"slug":862,"name":862,"fn":863,"description":864,"org":865,"tags":866,"stars":841,"repoUrl":842,"updatedAt":877},"genmedia-audio-engineer","synthesize and mix audio content","Expert in audio synthesis, music generation, and mixing. Use when creating podcasts, background scores, or multi-track audio layering using mcp-chirp3-go, mcp-lyria-go, mcp-gemini-go, mcp-nanobanana-go, and mcp-avtool-go.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[867,870,873,874],{"name":868,"slug":869,"type":16},"Audio","audio",{"name":871,"slug":872,"type":16},"Creative","creative",{"name":9,"slug":8,"type":16},{"name":875,"slug":876,"type":16},"Vertex AI","vertex-ai","2026-07-12T07:39:16.623879",{"slug":879,"name":879,"fn":880,"description":881,"org":882,"tags":883,"stars":841,"repoUrl":842,"updatedAt":890},"genmedia-image-artist","generate and edit AI images","Expert in AI image generation and editing. Use when the user needs high-quality textures, character-consistent visuals, or image-to-image editing using mcp-nanobanana-go.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[884,885,886,889],{"name":871,"slug":872,"type":16},{"name":9,"slug":8,"type":16},{"name":887,"slug":888,"type":16},"Image Generation","image-generation",{"name":875,"slug":876,"type":16},"2026-07-12T07:39:15.372822",{"slug":892,"name":892,"fn":893,"description":894,"org":895,"tags":896,"stars":841,"repoUrl":842,"updatedAt":906},"genmedia-producer","produce multi-step media content","Expert media production assistant. Use when requested to help with storyboarding, podcast creation, audio assembly, or complex multi-step media workflows using the GenMedia MCP servers (Veo, Lyria, Gemini TTS, NanoBanana).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[897,898,899,900,903],{"name":868,"slug":869,"type":16},{"name":871,"slug":872,"type":16},{"name":9,"slug":8,"type":16},{"name":901,"slug":902,"type":16},"Media","media",{"name":904,"slug":905,"type":16},"Video","video","2026-07-12T07:39:09.672849",{"slug":908,"name":908,"fn":909,"description":910,"org":911,"tags":912,"stars":841,"repoUrl":842,"updatedAt":916},"genmedia-video-editor","edit and compose video content","Expert in video composition, editing, and format conversion. Use when the user wants to generate high-quality video, overlay images on video, concatenate clips, create GIFs, or sync audio to video using mcp-avtool-go and mcp-veo-go.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[913,914,915],{"name":871,"slug":872,"type":16},{"name":9,"slug":8,"type":16},{"name":904,"slug":905,"type":16},"2026-07-12T07:39:13.749081",{"slug":918,"name":918,"fn":919,"description":920,"org":921,"tags":922,"stars":841,"repoUrl":842,"updatedAt":934},"genmedia-voice-director","generate expressive text-to-speech with Gemini","Expert in casting, directing, and generating expressive text-to-speech using Gemini TTS. Use this when the user needs virtual voice actor personas, expressive speech generation, or multiple variations of a voiceover (like \"take 3 on the bounce\").",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[923,924,925,928,931],{"name":868,"slug":869,"type":16},{"name":871,"slug":872,"type":16},{"name":926,"slug":927,"type":16},"Gemini","gemini",{"name":929,"slug":930,"type":16},"Speech","speech",{"name":932,"slug":933,"type":16},"Text-to-Speech","text-to-speech","2026-07-12T07:39:17.86673",80]